$(document).ready(function () {

	$('#size_table a').click(function(){
		$('#size_table a').removeClass('active'); 
		$(this).addClass('active');
		$('#size_value').val(this.rel);
		return false;
		});
	
	$('#add_to_cart').removeAttr('onclick');

	$('#add_to_cart').click(function () {
		var validate = true;
		$('.option').each(function () { if (!$(this).val()) validate = false });
	
		if (!validate)	{
						$.blockUI({
								message: "<p align=\"center\">Необходимо выбрать размер!</p>",
								defaultWidth: 250,
								timeout: 2000
										});				
			return false;
			}
	
		$.ajax({
			type: 'post',
			url: 'index.php?route=module/cart/callback',
			dataType: 'html',
			data: $('#product :input'),
			success: function (html) {
				$('#module_cart #text').html(html);
			},	
			complete: function () {
				var image = $('#wrap').offset();
				var cart  = $('#module_cart').offset();	
				$('#wrap').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();
				});		
			}			
		});	
		return false;
	});			
});
