addNamespace("Hotel.Web.Common.Module");
Hotel.Web.Common.Module.Top_class = Class.create();
Hotel.Web.Common.Module.Top_class.prototype = (new AjaxPro.Request()).extend({
	LoadTagList: function(intcity, type, callback) {
		return this.invoke("LoadTagList", {"intcity":intcity, "type":type}, callback);
	},
	LoadArea: function(intcity, callback) {
		return this.invoke("LoadArea", {"intcity":intcity}, callback);
	},
	LoadAreaIdAndZAreaZId: function(areaid, callback) {
		return this.invoke("LoadAreaIdAndZAreaZId", {"areaid":areaid}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/Hotel.Web.Common.Module.Top,Web.ashx";
	}
})
Hotel.Web.Common.Module.Top = new Hotel.Web.Common.Module.Top_class();

