function addToCart(item) {
	//alert(item);
		document.getElementById('textdump').value="adding";
	var ajaxstr = "/assets/templates/site/includes/cartfunc.php?action=add&id="+item;
	new Ajax(ajaxstr, {method: 'get',onComplete:addComplete}).request();
}

function delFromCart(item){
	var ajaxstr = "/assets/templates/site/includes/cartfunc.php?action=delete&id="+item;
	new Ajax(ajaxstr, {method: 'get',onComplete:delComplete}).request();	
}

function calcTotal() {
	alert('foo');
}

function addComplete(ret) {
	document.getElementById('textdump').value="output:"+ret;
}	

function delComplete(ret) {
	document.getElementById('textdump').value="output:"+ret;
}

function showCart() {
	var ajaxstr = "/assets/templates/site/includes/cartfunc.php?action=showcart";
	new Ajax(ajaxstr, {method: 'get',onComplete:addComplete}).request();
}

