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