jQuery(document).ready(function(){ 
	if (jQuery(".tx-maxeasyproduct-product-show").length > 0){ 
		jQuery('.moreinfo-img').click(function(event) {
			event.preventDefault();
			var hrefAjax = this.href;
			hrefAjax = hrefAjax.replace ("detail","ajax");
			jQuery.ajax({
				url : hrefAjax,
				success: function(data) {
					jQuery('.tx-maxeasyproduct-product-show').html(data);
				}
			});
		});	
		jQuery('.moreinfo-img').click(function(){
				        jQuery('html, body').animate({scrollTop:0}, 'slow');
				        return false;
				    });
	}
	
}); 
