$(document).ready(function () {
	$('.button_add_to_cart').removeAttr('onclick');

	$('.button_add_to_cart').live("click", function () {
		$.ajax({
			type: 'post',
			url: 'index.php?route=module/cart/callback',
			dataType: 'html',
			data: 'product_id=' + $(this).children('[name=product_id]').val()+"&quantity=1",
			success: function (html) {
				$('#module_cart .middle').html(html);
				//$('#module_cart .middle').html(html);
			}				
		});			
	});			
});
