if(typeof compasscorp == "undefined") compasscorp={};
if(typeof compasscorp.com == "undefined") compasscorp.com={};
if(typeof compasscorp.com.Store == "undefined") compasscorp.com.Store={};
if(typeof compasscorp.com.Store.Default == "undefined") compasscorp.com.Store.Default={};
compasscorp.com.Store.Default_class = function() {};
Object.extend(compasscorp.com.Store.Default_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	AddToCart: function(ASIN) {
		return this.invoke("AddToCart", {"ASIN":ASIN}, this.AddToCart.getArguments().slice(1));
	},
	UpdateQty: function(CartItemId, Quantity) {
		return this.invoke("UpdateQty", {"CartItemId":CartItemId, "Quantity":Quantity}, this.UpdateQty.getArguments().slice(2));
	},
	ClearCart: function() {
		return this.invoke("ClearCart", {}, this.ClearCart.getArguments().slice(0));
	},
	url: '/ajaxpro/compasscorp.com.Store.Default,compasscorp.com.ashx'
}));
compasscorp.com.Store.Default = new compasscorp.com.Store.Default_class();

