var obj = null;

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

$(document).ready(function() {
	$('ul#menu > li').hover(function() {
		if (obj) { obj.find('ul').fadeOut('fast');obj = null;
		} //if
		
		$(this).find('ul').fadeIn('fast');
	}, function() {
		obj = $(this);setTimeout("checkHover()",2); // si vous souhaitez retarder la disparition, c'est ici
	});
});

$(document).ready(function() {
	$('ul#menucarte > li').hover(function() {
		if (obj) { obj.find('ul').fadeOut('fast');obj = null;
		} //if
		
		$(this).find('ul').fadeIn('fast');
	}, function() {
		obj = $(this);setTimeout("checkHover()",2); // si vous souhaitez retarder la disparition, c'est ici
	});
});


