Fret Daddy
$(document).ready(function()
{
var targets = {};
$('body').on('mouseover', '.product-hover-trigger', function()
{
var id = $(this).data('hover-target');
var target = (targets[id] = targets[id] || $('#' + id));
target.addClass('product-hover');
})
.on('mouseout', '.product-hover-trigger', function()
{
var id = $(this).data('hover-target');
var target = (targets[id] = targets[id] || $('#' + id));
target.removeClass('product-hover');
});
});