I would replace Pictures on mouseover.
I Found a nice script here, but the problem is all images on the page get replaced.
This way i would filter the images while selecting.
I added each picture the ending "_rep".
The code im using:
$("img")
.mouseover(function() {
var src = $(this).attr("src").match(/[^\.]+/) + "_akt.png";
$(this).attr("src", src);
})
.mouseout(function() {
var src = $(this).attr("src").replace("_akt.png", ".png");
$(this).attr("src", src);
});
Search for something like that:
$("img like %_rep%")
//code mouseover, mouseout