I have got this jquery code
$(".y_e").mouseover(function(){
$(this).children(".Photopreview").show("fast");
$(this).mouseleave(function(){
$(this).children(".Photopreview").hide("fast");
})
});
and this html
<div class="y_e">
<div class="Photopreview">
<img src="../uploads/a.jpg"/>
<div class="Arrow_down" ></div>
</div>
</div>
How can i wait 3 seconds after user mouseovers on y_e?