Här är jquery-koden som borde fungera:
<script>
$(function () {
$(document).on('click', 'div.prodcls img', function (e) {
e.preventDefault();
window.open($(this).attr('src').replace('/thumbnails', ''), '');
});
});
</script>
Och lite css för gott skull:
<style>
div.prodcls img:hover {
cursor: pointer;
}
</style>
Här är en fungerande fiol:http://jsfiddle.net/DenGp/