$(document).ready(function() {
	
	$("div.fiche_galerie a").hover(function() {
		$(this)
			.find("img")
			.stop(true, true)
			.animate({
				opacity: 0.25,
			  }, 250, function() {
				// Animation complete.
 			 });
	}, function() {
		$(this)
			.find("img")
			.stop(true, true)
			.animate({
				opacity: 1,
			  }, 250, function() {
				// Animation complete.
			  });
	});			
});
