$(document).ready(function () {
	$('#add_to_cart').removeAttr('onclick');

	$('#add_to_cart').click(function () {
		var emptyFlag = false;
		var minimumFlag = true;
		if($('.optionListingContainer').attr('class') == 'optionListingContainer') {
			$('.optionListingContainer').find('input').each(function () {         
				if($(this).val() != '') {
					if($(this).val() < $('#minimum_quantity').val()) {
						minimumFlag = false;
					} else {
						emptyFlag = true;	
					}
				}     
			}); 	
		} else {
			emptyFlag = true;
		}	
		if(!minimumFlag) {
			alert('This item has a minimum order quantity!');
		}
		if(emptyFlag && minimumFlag) {
			$('#module_cart .middle').slideUp('medium', function() {
				$.ajax({
					type: 'post',
					url: 'index.php?route=module/cart/callback',
					dataType: 'html',
					data: $('#product :input'),
					success: function (html) {
						var image = $('#image').offset();
						var cart  = $('#module_cart').offset();
						var Html = html;
						
						$('#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, 'medium', false, function () {
							$('#temp').remove();
							$('#module_cart .middle').html(Html);
							$('#module_cart .middle').slideDown('fast');						
						});     
						$('.optionListingContainer').find('input').each(function () {         
							$(this).val('');     
						}); 
					}		
				});	
			});	
		}	
	});			
});

