// JavaScript Document
$(document).ready(function (){
	$(".mainmenu").mouseover(function(){
		$(this).css("background-image","url(/img/mmenu_back_active.jpg)");
		$(this).css("background-color","#ffef86");
		$(this).css("cursor","hand");
		$(this).find("a").css("color","#000000");
		$(this).find("a").css("text-decoration","none");
		href = $(this).find("a").attr("href");
		$(this).click(function () {  
    	  document.location.href=href;
	    }); 
	});
	$(".mmenu").mouseout(function(){
		$(this).css("background-image","url(/img/mmenu_back.jpg)");
		$(this).find("a").css("color","#cea531");
		$(this).find("a").css("text-decoration","none");
	});

});

