$(document).ready(
function()
	{
	
	$('.menuLevel1  li').hover(
	   function() 
	 { 
	  $(this).children('ul').show();
	  $(this).addClass("activeM");
	 } 
	  ,
	  function() 
	 
	 { 
	 
	  $(this).children('ul').hide();
	  $(this).removeClass("activeM");
	 }
	  );

} ); 
