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