Aquí está el código jquery que debería funcionar:
<script>
$(function () {
$(document).on('click', 'div.prodcls img', function (e) {
e.preventDefault();
window.open($(this).attr('src').replace('/thumbnails', ''), '');
});
});
</script>
Y algo de css por si acaso:
<style>
div.prodcls img:hover {
cursor: pointer;
}
</style>
Aquí hay un violín que funciona:http://jsfiddle.net/DenGp/