$(document).ready(function() {

	var quantity;
	var quantityStorage = $('#qty');
	var quantityDisplay = $('.quantity span');
	var quantityMax = parseInt($('#max_qty').val());
	
	$('.quantity a').click(function() {	
		
		quantity = parseInt(quantityStorage.val());
				
		if ($(this).hasClass('increase') && quantityMax > quantity) {
			quantity++;
		} else if ($(this).hasClass('reduce') && quantity > 1) {
			quantity--;
		}
		
		quantityStorage.val(quantity);
		quantityDisplay.text(quantity);
		
		return false;
		
	});
	
	
	
	/*
	$('.variations select').change(function() {
	
		 $('#the_price span').text(variations[$(this).val()]['price']);
		 $('#the_price').animate({ backgroundColor : '#d6d6d6' }, 70).animate({ backgroundColor : '#fff' }, 400)		 
	
	});
	*/
	
	
	
	$('.add_to_cart_button').click(function() {
	
		var url = '/wp-content/themes/bagaboo/add_to_cart.php?' + $('#the_product').serialize();
		window.location = url;
	
		//$.post('/wp-content/themes/bagaboo/add_to_cart.php', $('#the_product').serialize());	
		return false;
	
	});
	
	

	

});
