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