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

