$(document).ready(function()  { 
	
	
		$('.product_div').click(function() { 
			
			var ref = $(this).attr("url");
			
			document.location.href=ref;
			
			
		});
	
	
});
