Default3_class = function() {};
Object.extend(Default3_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	ListProductsByCategoryId: function(categoryID) {
		return this.invoke("ListProductsByCategoryId", {"categoryID":categoryID}, this.ListProductsByCategoryId.getArguments().slice(1));
	},
	GetAccesories: function(categoryID) {
		return this.invoke("GetAccesories", {"categoryID":categoryID}, this.GetAccesories.getArguments().slice(1));
	},
	GetProductRange: function(categoryID) {
		return this.invoke("GetProductRange", {"categoryID":categoryID}, this.GetProductRange.getArguments().slice(1));
	},
	showProduct: function(prodID) {
		return this.invoke("showProduct", {"prodID":prodID}, this.showProduct.getArguments().slice(1));
	},
	getProductsFromURL: function(prdctName) {
		return this.invoke("getProductsFromURL", {"prdctName":prdctName}, this.getProductsFromURL.getArguments().slice(1));
	},
	CountBasketItems: function() {
		return this.invoke("CountBasketItems", {}, this.CountBasketItems.getArguments().slice(0));
	},
	AddToBasket: function(productId) {
		return this.invoke("AddToBasket", {"productId":productId}, this.AddToBasket.getArguments().slice(1));
	},
	LoadFeaturedProduct: function(cId) {
		return this.invoke("LoadFeaturedProduct", {"cId":cId}, this.LoadFeaturedProduct.getArguments().slice(1));
	},
	getAccessoriesCmb: function(subcategoryID) {
		return this.invoke("getAccessoriesCmb", {"subcategoryID":subcategoryID}, this.getAccessoriesCmb.getArguments().slice(1));
	},
	CheckStock: function(productID) {
		return this.invoke("CheckStock", {"productID":productID}, this.CheckStock.getArguments().slice(1));
	},
	GetCategoryName: function(categoryID) {
		return this.invoke("GetCategoryName", {"categoryID":categoryID}, this.GetCategoryName.getArguments().slice(1));
	},
	RequestStockEmail: function(productId, emailAddress) {
		return this.invoke("RequestStockEmail", {"productId":productId, "emailAddress":emailAddress}, this.RequestStockEmail.getArguments().slice(2));
	},
	url: '/ajaxpro/Default3,Casio Online.ashx'
}));
Default3 = new Default3_class();

