$(document).ready(function(){
  $(".product-images-wrapper div.product-image").hover(function() {
      $('.popup',this).stop(true, true).animate({opacity: "show", top: "-150"}, "slow");
    }, function() {
      $('.popup',this).animate({opacity: "hide", top: "-160"}, "slow");
  });
});
