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

