var obj = null;
var obj2 = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');
    //obj.find('span').hide();	
	} //if
} //checkHover
function checkHover2() {
	if (obj2) {
		obj2.find('div').fadeOut('fast');
    //obj.find('span').hide();	
	} //if
} //checkHover

function menu() {
	$('#Nav > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			//obj.find('span').hide();;
			obj = null;
		} //if
		
		$(this).find('ul').fadeIn('fast');
		//$(this).find('span').show();
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			5); // si vous souhaitez retarder la disparition, c'est ici
	});
	$('#lienproduct').hover(function() {
		if (obj2) {
			obj2.find('div').fadeOut('fast');
			obj2 = null;
		} //if
		$(this).find('div').fadeIn('fast');
		//$(this).find('span').show();
	}, function() {
		obj2 = $(this);
		setTimeout(
			"checkHover2()",
			5); // si vous souhaitez retarder la disparition, c'est ici
	});
};
