$(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 () {
				var image = $('#image').offset();
	
				$('#image').before('<img src="' + $('#image').attr('src') + '" id="temp" style="position: absolute; top: ' + image.top + 'px; left: ' + image.left + 'px;" />');
                
                // ADDED //
                if(cartHidden == true) {
                    $('#module_cart').slideDown('fast');
                    cartHidden = false;
                }
                // END ADDED //
				
                params = {
					top : cartX + 'px',  // Changed
					left : cartY + 'px', // Changed
					opacity : 0.0,
					width : cartW,       // Changed
					heigth : cartH       // Changed
				};
	
				$('#temp').animate(params, 'slow', false, function () {
					$('#temp').remove();
				});		
			}			
		});			
	});			
});
