$(document).ready(function(){ 
	/**/
	$.listen('click',"img.productThumb",function(event) {
					   
		 event.preventDefault();
		 var arr = $(this).attr("id");	
		$("#primaryPhoto").load("/shop/photo/id/" + arr);
	});
	
});
