$(document).ready(function() {
	$('.basket_link').click(function() {
		var href = $(this).attr('href');
		var array = href.split('=');
		$.post('/basket/add.php', {
			product_id: array[1]
		}, function(data) {
			$('.error').hide();
			$('.back').parent().after('<p class="error"><strong>' + data + '</strong></p>');
			return false;
		});
		return false;
	});
	/*
	$('.plus').click(function() {
		var id = $(this).attr('href');
		$.post('ajax.php', {
			product_id: id,
			type: 'increment'
		}, function(data) {
			if(data == 'true') {
				var qty = $('#qty_'+id).html();
				$('#qty_'+id).html(Number(qty) + Number(1));
			} else {
				$('table.basket').before('<p id="stock_error"><strong>There is not enough stock to increase your quantity of this product.</strong></p>');
				$('#stock_error').fadeOut({ duration: 5000 });
			}
			return false;
		});
		return false;
	});
	
	$('.minus').click(function() {
		var id = $(this).attr('href');
		$.post('ajax.php', {
			product_id: id,
			type: 'decrement'
		}, function(data) {
			var qty = $('#qty_'+id).html();
			if(qty != '0') {
				$('#qty_'+id).html(Number(qty) - Number(1));
				return false;
			} else {
				return false;
			}
		});
		return false;
	});*/
});
