var SERENADE_PRODUCT = 2;

$(document).ready(function () {
	
	$('#add_to_cart').removeAttr('onclick');
	$('#add_to_cart').click(function () {
		
		if($('#add_to_cart').hasClass('disabled')) {
			return;
		}
	
		if($('#product_type_id').val() == SERENADE_PRODUCT) {
			validateSerenade();
		} else {
			add_to_cart();
		}		
	});			
});

function add_to_cart() {
	$.ajax({
		type: 'post',
		url: 'index.php?route=module/cart/callback',
		dataType: 'json',
		data: $('#product :input'),
		success: function (data) {
			$('#product_key').attr('value', data.key);
			$('#module_cart .middle').html(data.html);
			if(typeof openDialogMessage == 'function') {
				openDialogMessage();
			}
		},	
		complete: function () {
			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(),  
				heigth : $('#module_cart').height()
			};		

			$('#temp').animate(params, 'slow', false, function () {
				$('#temp').remove();
			});		
		}			
	});	
}
