Che,
Э - походу поспешил с обраткой
// Fade image
$('div.img_wrapper').mouseenter(function(){
$('div.img_wrapper').mouseenter(function(){
$(this).find('img:first').stop().animate({opacity:1}, 1000);
}).mouseleave(function(){
$(this).find('img:first').stop().animate({opacity:0}, 1000);
});