function checkHover() {
	if (obj) {
		obj.find('div').fadeOut(300);	
	} //if
} //checkHover

jQuery(document).ready(function(){
	//Sous-menu
	$("#header").css({ height:"34px"});
	$(".nav2").css({ top:"0"});
	$(".nav2").hide();
	$('#nav1 > li').hover(function() {
		/*alert("test");
		if (obj) {
			obj.find('div').fadeOut(300);
			obj = null;
		} //if*/
		
		$(this).find('div').fadeIn(300);
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			100); // si vous souhaitez retarder la disparition, c'est ici
	});
	//Accordéon nav2
	/*if ($('#nav2_page').is(*)) {
		$('#nav2_page').accordion({
			header: "a.toggler",
			active: true,
			autoheight: false
		});
	};*/
	$('#nav2_page').each(function(){
		$(this).accordion({
			header: "a.toggler",
			active: true,
			autoheight: false
		});
	});
});