$(document).ready(function(){	
	$(".blockHeader").mouseenter(function(){
		encart = $(this).attr('rel');	
		$(".encartPop").each(function(){			
			$(this).hide();			
		});
	
		$("#"+encart).slideToggle();		
		
		$("#"+encart).mouseleave(function(){	
			$(".encartPop").each(function(){				
				$(this).hide();				
			});			
		});		
	});
	
	
	$('#ul_contact > li').hover(
			function(){ MenuDeroulant_open($(this),'ul') },
			function(){ MenuDeroulant_timer($(this),'ul')}
	);
	//document.onclick = MenuDeroulant_close($('#ul_contact > li'),'ul');
});
	
	

