 $(document).ready(function(){   // fait marcher le menu a deux niveaux
   $('#navigation .niveau1').mouseout(function(){
	$(this).children('.ulniveau2').hide();
	}).mouseover(function() {
   $(this).children('.ulniveau2').show();   	
   });
   	   	 });
