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

