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

	$('.add_to_cart').click(function () {
		$.ajax({
			type: 'post',
			url: 'index.php?route=module/cart/callback',
			dataType: 'html',
			rel: $(this).attr('rel'),
			data: $('#product'+ (($(this).attr('rel')) ? '_'+$(this).attr('rel') : ""  ) +' :input'),
			success: function (html) {
				$('#box_cart').replaceWith(html);
			}
//            ,
//			complete: function () {
//                var image_id = '#image'+((this.rel) ? '_'+this.rel : ""  );
//				var image = $(image_id).offset();
//				var cart  = $('#box_cart').offset();
//
//				$(image_id).before('<img src="' + $(image_id).attr('src') + '" id="temp" style="position: absolute; top: ' + image.top + 'px; left: ' + image.left + 'px;" />');
//
//				params = {
//					top : cart.top + 'px',
//					left : cart.left + 'px',
//					opacity : 0.0,
//					width : $('#box_cart').width(),
//					height : $('#box_cart').height()
//				};
//
//				$('#temp').animate(params, 'slow', false, function () {
//					$('#temp').remove();
//				});
//			}
		});			
	});			
});
