var notify;
window.addEvent('domready', function() {
//	notify = new SexyAlertBox();
});

function addToCart(item,amount,size) {
	if(amount == '0') {
		alert('selecteer eerst uw gewenste hoeveelheid');
		return;
	}
	if (size == 'none_selected') {
		alert('U heeft nog geen maat geselecteerd')
	} else {
		var atc = new Request({
			url:'/shop/cart/add',
			method:'post',
			onFailure: function() {
			//notify.alert('Dit item zit reeds in uw download winkelwagen');
			},
			onSuccess: function() {
				window.location.reload();
			}
		}).send('pid='+item+'&amount='+amount+'&size='+size);
	}
	
}

function removeFromCart(item) {
	var atc = new Request({
		url:'/shop/cart/remove',
		method:'post',
		onFailure: function() {
		//notify.alert('Er heeft zich een fout voor gedaan...')
		},
		onSuccess: function() {
			window.location.reload();
		}
	}).send('pid='+item);
}


