var obj = null;

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

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

		//$(this).find('ul').slideDown('fast');
		$(this).find('ul').fadeIn("slow");
		$(this).find('ul').fadeTo("fast",0.95);


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