CART_BASE_URL = '/tienda/'

function cAdd(slug, type) {
	$.get(CART_BASE_URL + 'agregar/' + type + '/' + slug + '/',
		function(data) {$('#oCart').html(data);	});
}

function cIncrease(slug, type) {
	$.get(CART_BASE_URL + 'agregar/' + type + '/' + slug + '/1/',
		function(data) {$('#oCart').html(data);	});
}

function cDecrease(slug, type) {
	$.get(CART_BASE_URL + 'quitar/' + type + '/' + slug + '/1/',
		function(data) {$('#oCart').html(data);	});
}

function cSetAmount(slug, type, amount) {
	$.get(CART_BASE_URL + 'modificar/' + type + '/' + slug + '/' + amount + '/',
		function(data) {$('#oCart').html(data);	});
}

function cRemove(slug, type) {
	$.get(CART_BASE_URL + 'quitar/' + type + '/' + slug + '/',
		function(data) {$('#oCart').html(data);	});
}

function cClear() {
	$.get(CART_BASE_URL + 'limpiar/',
		function(data) {$('#oCart').html(data);	});
}

function cShow() {
	$.get(CART_BASE_URL + 'mostrar/',
		function(data) {$('#oCart').html(data);	});
}

function cHide() {
	$('#oCart').html('');
}

function cBuy() {
	$.get(CART_BASE_URL + 'comprar/',
		function(data) {
		$('#cCheckout form').submit();	
	});
}

