if(typeof Pages == "undefined") Pages={};
if(typeof Pages.Ajax == "undefined") Pages.Ajax={};
Pages.Ajax_class = function() {};
Object.extend(Pages.Ajax_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Hello: function() {
		return this.invoke("Hello", {}, this.Hello.getArguments().slice(0));
	},
	UpdateNoteParentAndPriority: function(noteId, parentId, previousNoteId, nextNoteId) {
		return this.invoke("UpdateNoteParentAndPriority", {"noteId":noteId, "parentId":parentId, "previousNoteId":previousNoteId, "nextNoteId":nextNoteId}, this.UpdateNoteParentAndPriority.getArguments().slice(4));
	},
	DeleteNoteTopic: function(noteId) {
		return this.invoke("DeleteNoteTopic", {"noteId":noteId}, this.DeleteNoteTopic.getArguments().slice(1));
	},
	FixTopicOrder: function(parentNodeId) {
		return this.invoke("FixTopicOrder", {"parentNodeId":parentNodeId}, this.FixTopicOrder.getArguments().slice(1));
	},
	url: '/ajaxpro/Pages.Ajax,App_Code.lvsemjqu.ashx'
}));
Pages.Ajax = new Pages.Ajax_class();


