/***************************/
//@Author: Adrian "yEnS" Mato Gondelle & Ivan Guardado Castro
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/

$(document).ready(function(){
	$(".menu > li").click(function(e){
		switch(e.target.id){
			case "webx":
				//change status & style menu
				$("#webx").addClass("active");
				$("#graphicx").removeClass("active");
				$("#customx").removeClass("active");
				//display selected division, hide others
				$("div.webx").fadeIn();
				$("div.graphicx").css("display", "none");
				$("div.customx").css("display", "none");
			break;
			case "graphicx":
				//change status & style menu
				$("#webx").removeClass("active");
				$("#graphicx").addClass("active");
				$("#customx").removeClass("active");
				//display selected division, hide others
				$("div.graphicx").fadeIn();
				$("div.webx").css("display", "none");
				$("div.customx").css("display", "none");
			break;
			case "customx":
				//change status & style menu
				$("#webx").removeClass("active");
				$("#graphicx").removeClass("active");
				$("#customx").addClass("active");
				//display selected division, hide others
				$("div.customx").fadeIn();
				$("div.webx").css("display", "none");
				$("div.graphicx").css("display", "none");
			break;
		}
		//alert(e.target.id);
		return false;
	});
});
