$(document).ready(function(){ // place l'image de fond correcte si deploye $("#navigation").children(".niveau1.courante").children(".ulniveau2").each(function(){ $(this).parent(".niveau1").children("a").addClass("displaydown"); }); // fait marcher le menu a deux niveaux $('#navigation').children('.niveau1').not('.courante').children(".ulniveau2").each(function(){ $(this).parent(".niveau1").mouseover(function() { $(this).children('.ulniveau2').show(); $(this).children('a').addClass("displaydown"); var hg=$('#corps').height(); var hn=$('#navigation').height(); //alert('general ' + hg + " et nav " + hn); if (hn > hg) { $("#general").height(hn + 60); } }); $(this).parent(".niveau1").mouseout(function() { $(this).children('.ulniveau2').not('.courante').hide(); $(this).children('a').removeClass("displaydown"); }); }); });