$(function(){
	$('.maison').find('.ville_prix').slideDown("slow");
		
	$('.maison').find('.fleche').fadeIn(1000, function(){
		$(this).css('filter','');	
	});	
						
	$('.maison').hoverIntent( 
		function() { // Hover IN
			$(this).find('.plus_details').slideDown("fast");
			$(this).find('.fleche').fadeOut(400, function(){
				$(this).css('filter','');	
			});	
			$(this).find('.savoir_plus').fadeIn(400, function(){
				$(this).css('filter','');	
			});									

		},
		
		function() { // Hover OUT			
			$(this).find('.plus_details').slideUp("fast");
			$(this).find('.savoir_plus').fadeOut(100, function(){
				$(this).css('filter','');	
			});					
			$(this).find('.fleche').fadeIn(400, function(){
				$(this).css('filter','');	
			});	
		}
	);
});
