function changeQty(prodkey, qty) {
	removeConfirm = 'Are you sure you want to remove this item?';
	if(qty > 0 || (qty < 1 && confirm(removeConfirm))) {
		$.ajax({
	        type: "GET",
	        url: "/cust_cart_ajax.php",
	        data: "cmd=changeqty&prodkey="+prodkey+"&qty="+qty,
	        success: function(html) {
				$("#main").html(html);
				minicart();
    	    }
	    }); //close $.ajax(
	}
	return false;
}

function minicart() {
	$.ajax({
        type: "GET",
        url: "/cust_cart_ajax.php",
        data: "cmd=minicart",
        success: function(html) {
			$("#minicart").replaceWith(html);
        }
    }); //close $.ajax(
	return false;
}


