
var time;

function Menu(val, way) 
{

    $("#Header .menu a." + val + " img").stop();

    if (way == "on")
        $("#Header .menu a." + val + " img").animate({ opacity:0 }, 300);
    else
        $("#Header .menu a." + val + " img").animate({ opacity: 1 }, 300);




    if (val == "avantages") {

        $("#Header .submenu").stop();
        clearInterval(time);


        if (way == "on") {
            
            $("#Header .submenu").animate({ height: "105px" }, 200);
        
        }
        else {

            //clearTimeout(time);

            time = setTimeout(function () {
                $("#Header .submenu").animate({ height: "0px" }, 200);
            }, 50);
            
            
        }


    }

}




$(document).ready(function () {
    $('#Menu .submenu').mouseout(function () {

        clearTimeout(time);

        time = setTimeout(function () {
            $("#Header .submenu").animate({ height: "0px" }, 200);
        }, 100);




    });




    $('#Menu .submenu').mouseover(function () {

        clearTimeout(time);

        $("#Menu .submenu").css("display", "inline");




    });

});
