var CityInfo = Class.create();
CityInfo.prototype = 
{
	initialize: function(cityName)
	{
		this._containerDiv = $( cityName );
	},
	
	show: function()
	{
		Element.show( this._containerDiv );
		new Rico.Effect.FadeTo( this._containerDiv, .75, 250, 7 );
	},
	
	hide: function()
	{
		new Rico.Effect.FadeTo( 
		this._containerDiv, .0, 250, 7, {
			complete: function(){
				Element.hide( this._containerDiv );
			}
		});
	}
};

