$(function(){
	$('#front-page-cross .product-img-pool').each(function(){
		var $self = $(this);
		$self.find('img').click(function(){
			window.location.href = $self.attr('href');
		});
	});
});
