addNamespace("product_index");
product_index_class = Class.create();
product_index_class.prototype = (new AjaxPro.Request()).extend({
	productCatalogs: function(CatalogId, callback) {
		return this.invoke("productCatalogs", {"CatalogId":CatalogId}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/product_index,WEB_deploy.ashx";
	}
})
product_index = new product_index_class();

