//menu déroulant  
var obj = null;
$(document).ready(function() {
    $('#menu li').hover(
        function() {
            if (obj) {
                obj.children('ul').fadeOut('fast');
                obj = null;
            } //if
            $(this).children('ul').fadeIn('fast');
        },
        function() {
            obj = $(this);
            setTimeout("checkHover()", 200);
        }
    );
});

function checkHover() {
   if (obj) {
      obj.children('ul').fadeOut('fast');
   }
}
