/*jQuery().ready(function(){
	   	$(".subelement").hide();

		$(".element").mouseover(function()
        {
			if($(this).find(".subelement").is(":hidden"))
            {
				$(".subelement:visible").slideUp();
				$(this).find(".subelement").slideDown();
			}
        $(".element").mouseout(function()
        {
          $(this).find(".subelement").mouseout(function()
            {
                $(this).slideUp();
            });
          });
        });



});*/
var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('normal');
	} //if
} //checkHover

$(document).ready(function() {
	$('#Nav > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('normal');
			obj = null;
		} //if

		$(this).find('ul').fadeIn('normal');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			0); // si vous souhaitez retarder la disparition, c'est ici
	});
});