Voici le code jquery qui devrait fonctionner :
<script>
$(function () {
$(document).on('click', 'div.prodcls img', function (e) {
e.preventDefault();
window.open($(this).attr('src').replace('/thumbnails', ''), '');
});
});
</script>
Et un peu de CSS pour faire bonne mesure :
<style>
div.prodcls img:hover {
cursor: pointer;
}
</style>
Voici un violon fonctionnel :http://jsfiddle.net/DenGp/