PublicAjaxServices_class = function() {};
Object.extend(PublicAjaxServices_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetRegion: function(regionId) {
		return this.invoke("GetRegion", {"regionId":regionId}, this.GetRegion.getArguments().slice(1));
	},
	GetCafesForRegion: function(regionId) {
		return this.invoke("GetCafesForRegion", {"regionId":regionId}, this.GetCafesForRegion.getArguments().slice(1));
	},
	GetCafesForCategory: function(categoryId) {
		return this.invoke("GetCafesForCategory", {"categoryId":categoryId}, this.GetCafesForCategory.getArguments().slice(1));
	},
	GetCafesForKeyTown: function(townId) {
		return this.invoke("GetCafesForKeyTown", {"townId":townId}, this.GetCafesForKeyTown.getArguments().slice(1));
	},
	GetCafe: function(cafeId) {
		return this.invoke("GetCafe", {"cafeId":cafeId}, this.GetCafe.getArguments().slice(1));
	},
	GetTownsForRegion: function(regionID) {
		return this.invoke("GetTownsForRegion", {"regionID":regionID}, this.GetTownsForRegion.getArguments().slice(1));
	},
	url: '/ajaxpro/PublicAjaxServices,App_Code.br_s-r1m.ashx'
}));
PublicAjaxServices = new PublicAjaxServices_class();

