var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');	
		$("#menu_haut li").removeClass('on');
	} //if
} //checkHover

$(document).ready(function() {
	$('#menu_haut > li').hover(function() {
		$("#menu_haut li").removeClass('on');
		if (obj) {
			obj.find('ul').stop(true, true).fadeOut('fast');
			obj = null;
			$(this).addClass('on');
		} //if
		$(this).addClass('on');
		$(this).find('ul').stop(true, true).fadeIn('fast');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			0); // si vous souhaitez retarder la disparition, c'est ici
	});
	
});
