// Core Cart JavaScript
function do_add_cart_item(form) {
	new Request.JSON({
		url: '/r/x=cart',
		method: 'post',
		onComplete: do_add_cart_item_cb,
		'form': form
	}).post(form);
	
	return false;
}

function do_add_cart_item_cb(rJ, rT) {
	if (rJ === true) {
	}
	else {
	}
}