jQuery(function(){

	jQuery(".caja-producto").live("click", function(){
		var $this = jQuery(this);
		window.location = $this.find("a").attr("href");
	});
});

