$(document).ready(
	function() {		
		
		$('.product img').css({'cursor' : 'pointer'});
		$('.product img').click(
			function() {
				var theLink = $(this).parent().parent().parent().children('strong').children('a').attr('href');
				window.location = theLink;
			}
		)
	}
)