$(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) {
				$('#cart_count').html(html);
				$('.top').append("<div class=\"success\" style=\"margin-top: 10px; margin-right: 10px; margin-left: 10px;\">Success: this item has been added to your basket above</div>");			
			},	
			complete: function () {

				params = {
    				'opacity' : '0.0'
				};		
	
				$('.success').animate(params, 3000, false, function () {
					$('.success').remove();
				});		
			}			
		});			
	});			
});
