var obj = null;

function checkHover() {

        if (obj) {
                obj.children('ul').fadeOut('fast');
        } //if

} //checkHover

$(document).ready(function() {

//    $('#Nav a').hover(function() {
//
//            if (obj && $(this)!=obj.children('a')) {
//                    obj.children('ul').fadeOut('fast');
//                    obj = null;
//            }
//
//    }, function() {
//            obj = $(this);
//    });

    $('.Nav > li').hover(function() {

            if (obj) {

                    obj.children('ul').fadeOut('fast');

                    obj = null;

            } //if

            $(this).css({'color':'362b25'});

            $(this).children('ul').fadeIn('fast');

            $(this).children('ul').css({'margin-left':$(this).css('width'),
                                            'margin-top':'-15px'});

    }, function() {

            obj = $(this);

            setTimeout("checkHover()", 0); // si vous souhaitez retarder la disparition, c'est ici
    });

});
