$(document).ready(function () {
	$('#add_to_cart').removeAttr('onclick');

	$('#add_to_cart').click(function () {
		//alert($('#product :input').name); 
		//alert($('input[name=option]:checked').val());
		var datastring = $('#product :input');
		// datastring += 'option=' + $('input[name=option]:checked').val();  
		$.ajax({
			type: 'post',
			cache: false,
			url: 'http://www.beckettmedia.com/index.php?route=module/cart/callback',
			dataType: 'html',
			data: datastring,
			success: function (html) {
				$('#module_cart .middle').html(html);
			},	
			complete: function () {
				//alert('done');
				location = 'http://www.beckettmedia.com/index.php?route=checkout/cart';
				/*var image = $('#image').offset();
				var cart  = $('#module_cart').offset();
	
				$('#image').before('<img src="' + $('#image').attr('src') + '" id="temp" style="position: absolute; top: ' + image.top + 'px; left: ' + image.left + 'px;" />');
	
				params = {
					top : cart.top + 'px',
					left : cart.left + 'px',
					opacity : 0.0,
					width : $('#module_cart').width(),  
					height : $('#module_cart').height()
				};		
	
				$('#temp').animate(params, 'slow', false, function () {
					$('#temp').remove();
				});*/		
			}			
		});			
	});			
});
