$(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) {
				$('#nav .baskethook').html(html);
			},		
			complete: function () {
				var button = $('#add_to_cart').offset();
				var cart  = $('.baskethook');
	
				$('#add_to_cart').after('<div id="temp" class="added-to-cart">Thanks, item added to basket</div>');
	
				params = {
				    opacity: 0
				};		
	
				$('#temp').animate(params, 4000, false, function () {
					$('#temp').remove();
				});	
			}			
		});			
	});			
});
