var obj = null;

//--- TEST SI SURVOL NOEUD PARENT ---//
function checkHover() {
	if (obj) {	
		obj.find('ul').hide();
	}
}
//------------//


//--- ON MASQUE OU PAS LE SOUS MENU ---//
// --> Quand le document est pret
$(document).ready(function() {
	// Si on survol un élément du menu qui contient un sous menu
	$('#menu > li').hover(function() {
		if (obj) {
			obj.find('ul').hide();
			obj = null;
		}
		// HACK TO IE8
		var oldWidth	= $(this).width();
		$(this).width($(this).children("a").width());
		$(this).find('ul').show();
		$(this).width(oldWidth);
	}, function() {
		obj = $(this);
		setTimeout(	"checkHover()",	0);// on regarde sans cesse se on survol le parent
	});
});
//------------//
