if(typeof AjaxService == "undefined") AjaxService={};
AjaxService_class = function() {};
Object.extend(AjaxService_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	WeeklyFlyerSignup: function(emailAddess) {
		return this.invoke("WeeklyFlyerSignup", {"emailAddess":emailAddess}, this.WeeklyFlyerSignup.getArguments().slice(1));
	},
	SetStoreRefCookie: function(storeRefID) {
		return this.invoke("SetStoreRefCookie", {"storeRefID":storeRefID}, this.SetStoreRefCookie.getArguments().slice(1));
	},
	GetMapsDirectionsUrl: function() {
		return this.invoke("GetMapsDirectionsUrl", {}, this.GetMapsDirectionsUrl.getArguments().slice(0));
	},
	AddShoppingListItem: function(productItemID, categoryItemID) {
		return this.invoke("AddShoppingListItem", {"productItemID":productItemID, "categoryItemID":categoryItemID}, this.AddShoppingListItem.getArguments().slice(2));
	},
	RemoveShoppingListItem: function(productItemID) {
		return this.invoke("RemoveShoppingListItem", {"productItemID":productItemID}, this.RemoveShoppingListItem.getArguments().slice(1));
	},
	GetShoppingListCount: function() {
		return this.invoke("GetShoppingListCount", {}, this.GetShoppingListCount.getArguments().slice(0));
	},
	url: '/ajaxpro/AjaxService,ShopkoSite_deploy.ashx'
}));
AjaxService = new AjaxService_class();

