$(document).ready(function(){
	$(".menu > li").click(function(e){
		switch(e.target.id){
			case "work":
				//change status & style menu
				$("#work").addClass("active");
				$("#about").removeClass("active");
				$("#contact").removeClass("active");
				//display selected division, hide others
				$("div.work").fadeIn();
				$("div.about").css("display", "none");
				$("div.contact").css("display", "none");
			break;
			case "about":
				//change status & style menu
				$("#work").removeClass("active");
				$("#about").addClass("active");
				$("#contact").removeClass("active");
				//display selected division, hide others
				$("div.about").fadeIn();
				$("div.work").css("display", "none");
				$("div.contact").css("display", "none");
			break;
			case "contact":
				//change status & style menu
				$("#work").removeClass("active");
				$("#about").removeClass("active");
				$("#contact").addClass("active");
				//display selected division, hide others
				$("div.contact").fadeIn();
				$("div.work").css("display", "none");
				$("div.about").css("display", "none");
			break;
		}
		//alert(e.target.id);
		return false;
	});
});
