$(function(){

$(".product_zoom").hover(
  function () {
	$(this).children().fadeIn(600);
  }, 
  function () {
    $(this).children().fadeOut(1);
  }
);
});

