$(document).ready(function() {
  $('.product-item img.thumb').bind('mouseover', function() {
    $('.product-item img.hover[rel=' + $(this).attr('rel') +']').show();
  });
  $('.product-item img.hover').bind('mouseout', function() {
    $(this).hide();
  });
});
