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

	$('#add_to_compare').click(function () {
		$.ajax({
			type: 'post',
			url: 'index.php?route=module/compare/callback',
			dataType: 'html',
			data: $('#compare_form :input'),
			success: function (html) {
				$('#module_compare .amount').html(html);
			},
			complete: function () {
				var image = $('#image').offset();
				var compare  = $('#module_compare').offset();

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

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

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