
	function showMeWeather()
	{
		banner = document.getElementById('showMeWeather');

		isHide = banner.style.display;


			banner.style.display = "block";
		
		return null;
	}
	
	function hideMeWeather()
	{
		banner = document.getElementById('showMeWeather');
		banner.style.display = "none";
	
	}
