$(document).ready(function(){ 

	jQuery("#products .box").css({  "cursor": "pointer" });

	jQuery("#products .box").bind("click", function(e){
		
		if (jQuery("a", this).length > 0) {
			window.location.href = jQuery("a", this).attr('href');
		}
	});
	



}); 



