if(typeof COW == "undefined") COW={};
if(typeof COW.Weather == "undefined") COW.Weather={};
if(typeof COW.Weather.WeatherController == "undefined") COW.Weather.WeatherController={};
COW.Weather.WeatherController_class = function() {};
Object.extend(COW.Weather.WeatherController_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	renderWeather: function(mID) {
		return this.invoke("renderWeather", {"mID":mID}, this.renderWeather.getArguments().slice(1));
	},
	url: '/ajaxpro/COW.Weather.WeatherController,COW.Weather.ashx'
}));
COW.Weather.WeatherController = new COW.Weather.WeatherController_class();

