// JavaScript Document

$(document).ready(function(){
	$("#menu li.m").each(function(i){
		$(this).mouseover(function(){		
								   
		   $("#menu li.m").each(function(){
				$(this).removeClass("hover");
				$(this).children("span").removeClass("hover");
			});
		   $(this).addClass("hover");
	  	   $(this).children("span").addClass("hover");
		   $("#menu>.list>ul").each(function(j){		  	
				if(i==j)
					$(this).css("display","");								  
				else
					$(this).css("display","none");
			});
		});
	});
});

