//Menu Navgation

$(function(){

	$(".menu_nav").hover(function(){
		$(this).addClass("mn_on").children("ul").stop().show();					  
	},function(){
		$(this).removeClass("mn_on").children("ul").stop().hide();
	});
	

	$(".menu ul li").hover(function(){
		$(this).children(".submenu").stop().show();								
	},function(){
		$(this).children(".submenu").stop().hide();
	});
});