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