Mostrar y esconder div con hover  jquery



/*Show Hiden hover Event*/


HTML:
 <ul>
<li><div class="views-field-nothing"></div></li>
<li></li>
<li></li>
<li></li>
</ul>


CSS:
.views-field-nothing{display:none;}

$(".productos-block ul li").hover(function(){
     $(this).find(".views-field-nothing").show();
},function(){
    $(this).find(".views-field-nothing").hide();
}); ------------------..............------------------