addNamespace("Tour");
Tour.Index_class = Class.create();
Tour.Index_class.prototype = (new AjaxPro.Request()).extend({
	GetAd: function(callback) {
		return this.invoke("GetAd", {}, callback);
	},
	GetSubDataSet: function(id, type, callback) {
		return this.invoke("GetSubDataSet", {"id":id, "type":type}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/Tour.Index,Tour.ashx";
	}
})
Tour.Index = new Tour.Index_class();

