I have the following in jQuery
// Larger sidebar images fades in on :hover
$("#left_sidebar .img_contain").hover(function(){
$(this).find(".larger_img").fadeIn("slow");
$(this).find(".larger_img").fadeOut("slow");
});
With the following HTML
<div class="img_contain">
<img width="160" height="240" src="/smaller.jpg">
<div class="larger_img" style="display: none; ">
<img width="300" height="450" src="/larger.jpg">
</div>
</div>
The idea here is that on :hover the hidden .larger_img div should fade in. The code works as expected but has a quirk - when hovering the .larger_img div successfully fades in but immediately fades out. My intention here is that the .larger_img div remains visible as long as the .img_contain div is :hovered.
Help?