addNamespace("AjaxMethod");
AjaxMethod_class = Class.create();
AjaxMethod_class.prototype = (new AjaxPro.Request()).extend({
	GetPhotoList: function(iCategoryID, callback) {
		return this.invoke("GetPhotoList", {"iCategoryID":iCategoryID}, callback);
	},
	GetPhotoInfo: function(id, callback) {
		return this.invoke("GetPhotoInfo", {"id":id}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/AjaxMethod,App_Code.ashx";
	}
})
AjaxMethod = new AjaxMethod_class();


