var obj = null;
function checkHover() {
	if (obj) {obj.find('ul').hide();}
}
$(document).ready(function() {
	$('#Nav > li,.headerMenu > li').hover(function() {
		if (obj) {
			obj.find('ul').show();
			obj = null;
		} //if
		$(this).find('ul').show();
		$(this).find('ul').css('z-index','9999');
	}, function() {
		obj = $(this);
		setTimeout("checkHover()",0); // si vous souhaitez retarder la disparition, c'est ici
	});
});