 $(document).ready(function(){   // fait marcher le menu a deux niveaux
   $('#navigation .niveau1').each(function(){

   	$(this).mouseover(function() {
   	$(this).children('.ulniveau2').show();   	
   	})
   	
   	$(this).mouseout(function() {
   	$(this).children('.ulniveau2').hide();   	
   	})
   	});
   	
   	//alert(jQuery.browser);
   		
   
   	
   	 });
