$(document).ready(
	function() {
		
		$("#the_product_list").each(
			function (i) {
				$('.product img:not(:first-child)').css({'display' : 'none'});
			}
		)
				
		
		
		$('.product img').css({'cursor' : 'pointer'});
		$('.product img').click(
			function() {
				var theLink = $(this).parent().parent().parent().children('strong').children('a').attr('href');
				window.location = theLink;
			}
		)
	}
)
