 $(document).ready(function(){	$("#navigation .niveau1").not(".courante").children(".ulniveau2").hide();
	$("#navigation .niveau1").not(".courante").hover(
			function(){
			$(this).children(".ulniveau2").slideDown("fast");
			},
			function(){
			//$(this).children(".ulniveau2").slideUp("slow");	
			});
			
			$("#navigation").bind("mouseleave",function(){
      $("#navigation .niveau1").not(".courante").children(".ulniveau2").slideUp("slow");
    });
    
    var hauteurcontexte = ($("#contextes").height()) +342;
    var hauteurcorps = $("#corps").height();
    if ( hauteurcontexte > hauteurcorps) { $("#corps").height(hauteurcontexte); } else { $("#ccontexte").height(hauteurcorps); }
 });
 
 
