$(document).ready(function(){
$('.collection > a').mouseover(function(){
var showClass = $(this).attr('class');
$('img.'+showClass).show();
});
$('.collection > a').mouseout(function(){
var showClass = $(this).attr('class');
$('img.'+showClass).hide();
});
});
Privacy Notice
Put here your Privacy Notice information.