 $(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();   	
   	})
   	});   	
   	
   	window.setTimeout("redresse();",500);
	$(window).resize(function(){  	redresse();	});
   	 });
 
 // hacke la hauteur du bandeau par rapport a la navigation
function redresse(){
	var hauteur= $("#navigation").height();
	$("#bandeau").height(120 + (hauteur-22));
}