$(document).ready(function(){
	$('#bientot-dispo').hide();
	
	$('#promo li:nth-child(2)').hover(function(){
		$('#bientot-dispo').fadeIn();
		}, function(){
    	$('#bientot-dispo').fadeOut();
  	});

});
