正しい道を歩み始めるフィドルは次のとおりです。
http://jsfiddle.net/EgDqy/12/
<div class="cell">
<img src="http://www.charlesayoub.com/news/public/uploads/images/895377521.jpeg" alt="" display />
<img src="http://static.ddmcdn.com/gif/smart-car-1.jpg" class="fader" alt="" />
</div>
<div class="cell">
<img src="http://www.charlesayoub.com/news/public/uploads/images/895377521.jpeg" alt="" />
<img src="http://static.ddmcdn.com/gif/smart-car-1.jpg" class="fader" alt="" />
</div>
<div class="cell">
<img src="http://www.charlesayoub.com/news/public/uploads/images/895377521.jpeg" alt="" />
<img src="http://static.ddmcdn.com/gif/smart-car-1.jpg" class="fader" alt="" />
</div>
$(".cell").hover(
function() {
$(this).find('.fader').fadeOut("slow");
},
function() {
$(this).find('.fader').fadeIn("slow");
}
);
.cell{ width:100px; display:inline-block; position:relative; }
.cell img { width:100px; position:absolute; top:0; left:0; }