 $(document).ready(function(){
   // fait marcher le menu a deux niveaux
   $('#navigation').children('.niveau1').each(function(){
   	$(this).mouseover(function() {
   	$(this).children('.ulniveau2').show();  	
   	})
   	
   	$(this).mouseout(function() {
   	$(this).children('.ulniveau2').hide();   	
   	})
   	});
   	
   	$('#contextes a img').parent().css("padding","0").css("background-image","none");
   	
 });
