﻿/***************************/
//@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!					
/***************************/

$jq(document).ready(function(){
	$jq(".menu1 > li").click(function(e){
		switch(e.target.id){
			
			case "news":
				//change status & style menu
				$jq("#news").addClass("active");
				$jq("#tutorials").removeClass("active");
				$jq("#links").removeClass("active");
				$jq("#others").removeClass("active");				
				
				//display selected division, hide others
				$jq("div.news").fadeIn();
				$jq("div.tutorials").css("display", "none");
				$jq("div.links").css("display", "none");
				$jq("div.others").css("display", "none");
			
			break;
			
			case "tutorials":
				//change status & style menu
				$jq("#news").removeClass("active");
				$jq("#tutorials").addClass("active");
				$jq("#links").removeClass("active");
				$jq("#others").removeClass("active");				
				//display selected division, hide others
				$jq("div.tutorials").fadeIn();
				$jq("div.news").css("display", "none");
			    $jq("div.links").css("display", "none");
			    $jq("div.others").css("display", "none");				
			
			break;
			
			case "links":
				//change status & style menu
				$jq("#news").removeClass("active");
				$jq("#tutorials").removeClass("active");
				$jq("#links").addClass("active");
				$jq("#others").removeClass("active");	
				//display selected division, hide others
				$jq("div.links").fadeIn();
				$jq("div.news").css("display", "none");
				$jq("div.tutorials").css("display", "none");
				$jq("div.others").css("display", "none");				
				
			break;
			
    		case "others":
				//change status & style menu
				$jq("#news").removeClass("active");
				$jq("#tutorials").removeClass("active");
				$jq("#links").removeClass("active");
				$jq("#others").addClass("active");				
				//display selected division, hide others

				$jq("div.others").fadeIn();
				$jq("div.links").css("display", "none");
				$jq("div.news").css("display", "none");
				$jq("div.tutorials").css("display", "none");
				
				
			break;
			
			
			
		}
		//alert(e.target.id);
		return false;
	});
});
