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

	$('#add_to_cart').click(function () {
		$.ajax({
			type: 'post',
			url: 'index.php?route=module/cart_slide/callback',
			dataType: 'json',
			data: $('#product :input'),
			success: function (data) {
				$('#module_cart .middle').html(data.output);
				$('#cart_slide_items').html(data.items);
				$('#cart_slide_total').html(data.total);
			},
			complete: function () {
				var image = $('#image').offset();
				var cart  = $('#module_cart').offset();

				$('#image').before('<img src="' + $('#image').attr('src') + '" id="temp_slide" style="position: absolute; top: ' + image.top + 'px; left: ' + image.left + 'px;" />');

				params = {
					top : cart.top + 'px',
					left : cart.left + 'px',
					opacity : 0.0,
					width : $('#module_cart').width(),
					height : $('#module_cart').height()
				};

				$('#temp_slide').animate(params, 'slow', false, function () {
					$('#temp_slide').remove();
				});
			}
		});
	});
});
