var obj = null;

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

$(document).ready(function() {
	$('.menu-1').mouseenter(function(){
		$('.menu-1 ul').hide();
	});
	$('.menu-1').hover(function() {
		if (obj) {
			$(this).find('ul').hide();
			obj = null;
		} //if
		
		$(this).find('ul').fadeIn();
		$(this).find('ul').css('display','table');
					
		
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			0); // si vous souhaitez retarder la disparition, c'est ici
	});

	
	$("#header").hover(function () {
		$("#header").css("background","url(./fileadmin/templates/images/fond-hover.png) center");
	});
	$("#header").mouseout(function () {
		$("#header").css("background","url(./fileadmin/templates/images/header.jpg) center");
	});
});

