var obj = null;

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


$(document).ready(function(){
		
		$(".footer_txt > a").corner("8px");
		$(".footer_txt > a").mouseenter(function () {
			 $(this).animate({ backgroundColor: "#93eeff", color:"#000" }, 1000);
			
		});
		$('.footer_txt > a').mouseleave(function(){
			$(this).animate({ backgroundColor: "#2cc9e7", color:"#fff" }, 500);
		
		});
		
		
		$('#menuDeroulant > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
		} //if
		
		$(this).find('ul').fadeIn('fast');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			0); // si vous souhaitez retarder la disparition, c'est ici
	});
		
		$("#slider").easySlider();
	
		

	  
});

