﻿/***************************/
//@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 "tfe":
				//change status & style menu
				$("#tfe").addClass("active");
				$("#ev").removeClass("active");
				//display selected division, hide others
				$("div.tfe").fadeIn();
				$("div.ev").css("display", "none");
			break;
			case "ev":
				//change status & style menu
				$("#tfe").removeClass("active");
				$("#ev").addClass("active");
				//display selected division, hide others
				$("div.ev").fadeIn();
				$("div.tfe").css("display", "none");
			break;
		}
		//alert(e.target.id);
		return false;
	});
});
