$(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',
			data: $('#product :input'),
			success: function (html) {
				$('#module_cart .middle').html(html);
			},	
			complete: function () {
				$('html, body').animate({scrollTop:0}, 'slow');

				$("#module_cart .middle").toggle(
					function() {
						$(this).animate({ color: "red" }, 1000);
					},
					function() {
						$(this).animate({ color: "#fff" }, 1000);
					}
				);
				$("#module_cart .middle").click();
				$("#module_cart .middle").toggle(
					function() {
						$(this).animate({ color: "#fff" }, 1000);
					},
					function() {
						$(this).animate({ color: "red" }, 1000);
					}
				);
				$("#module_cart .middle").click();
				$("#module_cart .middle").unbind('click')
				$("#module_cart .middle").unbind('toggle')
			}			
		});			
	});			
});
