function launchWeather() {
	document.getElementById('LiveWeather').style.display = 'none';
	document.getElementById('LiveWeather5Day').style.display = 'block';
}

function closeWeather() {
	document.getElementById('LiveWeather').style.display = 'block';
	document.getElementById('LiveWeather5Day').style.display = 'none';
}