// deplacer l'image

$(document).ready(function(){

$("#corps .listageconteneur li").each(function(){
	
	lelogo=$(this).children(".listagelogo");
	$(this).children(".listagelogo").remove();
	$(this).children(".listagetitre").after(lelogo);
});

// 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();   	
   	})
   	});

});
