$(document).ready(function(){
    
    /*$(".home").mouseenter(function(){ $(this).append("<div class='menu_dessus'><div class='menu_coin'></div></div>"); });
    $(".home").mouseleave(function(){ $(this).find(".menu_dessus").remove(); })
    */
    $(".niv0").find("li.li0").each(function() {
        if($(this).find("ul.niv1").length > 0) {
            $(this).mouseenter(function() { $(this).find("ul.niv1").stop(true, true).fadeIn('fast'); });
            $(this).mouseleave(function() { $(this).find("ul.niv1").stop(true, true).fadeOut('fast'); });
        }
    });
    $(".niv1").find("li").each(function() {
        if($(this).find("ul.niv2").length > 0) {
            $(this).mouseenter(function() { $(this).find("ul.niv2").stop(true, true).fadeIn('fast'); });
            $(this).mouseleave(function() { $(this).find("ul.niv2").stop(true, true).fadeOut('fast'); });
        }
    });
    $(".niv2").find("li").each(function() {
        if($(this).find("ul.niv3").length > 0) {
            $(this).mouseenter(function() { $(this).find("ul.niv3").stop(true, true).fadeIn('fast'); });
            $(this).mouseleave(function() { $(this).find("ul.niv3").stop(true, true).fadeOut('fast'); });
        }
    });
    $(".niv3").find("li").each(function() {
        if($(this).find("ul.niv4").length > 0) {
            $(this).mouseenter(function() { $(this).find("ul.niv4").stop(true, true).fadeIn('fast'); });
            $(this).mouseleave(function() { $(this).find("ul.niv4").stop(true, true).fadeOut('fast'); });
        }
    });
    $(".niv4").find("li").each(function() {
        if($(this).find("ul.niv5").length > 0) {
            $(this).mouseenter(function() { $(this).find("ul.niv5").stop(true, true).fadeIn('fast'); });
            $(this).mouseleave(function() { $(this).find("ul.niv5").stop(true, true).fadeOut('fast'); });
        }
    });
    $(".niv5").find("li").each(function() {
        if($(this).find("ul.niv6").length > 0) {
            $(this).mouseenter(function() { $(this).find("ul.niv6").stop(true, true).fadeIn('fast'); });
            $(this).mouseleave(function() { $(this).find("ul.niv6").stop(true, true).fadeOut('fast'); });
        }
    });
    $(".home").corner("bottom 10px");
    
    if($(".slideshow_entete").css("display") == "none"){ $(".slideshow_entete").remove(); }
    $(".contenu p:last").css("margin","0");
    $(".footer p:last").css("margin","0");
    $(".titreResumeSeul:last").css("margin","0");
    $("blockquote").prepend("<div class='blockquote_pin'>&nbsp;</div>");
    if(!$.browser.msie){ $(".second_menu ul li a").corner("bottom 5px");}
    $(".second_menu ul li > a").mouseenter(function(){ $(this).append("<div class='menu_dessus'><div class='menu_coin'></div></div>"); $(this).find("a.lvl0").addClass("select"); });
    $(".second_menu ul li > a").mouseleave(function(){ $(this).find(".menu_dessus").remove(); $(this).find("a.lvl0").removeClass("select"); })
});
