$('.product-image').hover(function() {
// On mouse in, change the source of the image
var secondImage = $(this).data('second-image');
$(this).attr('src', secondImage);
}, function() {
// On mouse out, change it back
var firstImage = $(this).data('first-image');
$(this).attr('src', firstImage);
});
$('.product-image').on('t