$(document).ready(function(){
    
    var hauteurContenu = $("body").height();
    var hauteurFenetre = $(window).height();
    
    if(hauteurContenu < hauteurFenetre){ $(".montagne").css({ "position":"absolute","bottom":"0" }); $(".footer").css({ "position":"absolute","bottom":"0" }); $(".montagne_index").css({ "position":"absolute","bottom":"0" }); }
    
    $(".menu").find(".home").each(function(){
        $(this).mouseenter(function() {
            $(this).find("a").css({ "background":"url(/web2/lisa-themes/sorema_fr/images/picto_home-over.jpg) center" });
            $(this).append("<div class='menu_ombre'></div>");
        });
        $(this).mouseleave(function() {
            $(this).find("a").css({ "background":"url(/web2/lisa-themes/sorema_fr/images/picto_home.png) bottom center no-repeat" });
            $(".menu_ombre").remove();
        });
    });
    
    $(".niv0").find("li.lvl0").each(function() {
        $(this).mouseenter(function() {
            $(this).find("a.lvl0").stop(true, true).css({ "background":"url(/web2/lisa-themes/sorema_fr/images/bg_menu-over.jpg)" });
            $(this).append("<div class='menu_ombre'></div>");
        });
        $(this).mouseleave(function() {
            $(this).find("a.lvl0").stop(true, true).css({ "background":"url(/web2/lisa-themes/sorema_fr/images/bg_menu.png) left no-repeat" });
            $(".menu_ombre").remove();
        });
        if($(this).find(".smenu").length > 0) {
            $(this).mouseenter(function() { $(this).find(".smenu").show(); });
            $(this).mouseenter(function() { $(this).find("ul.niv1").show(); });
            $(this).mouseleave(function() { $(this).find(".smenu").hide(); });
            $(this).mouseleave(function() { $(this).find("ul.niv1").hide(); });
        }
    });
    $(".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'); });
        }
    });
});
