intImage = 2;
	function swapImage() {
		switch (intImage) {
			case 1:
			toggle.src = "http://www.giantsridge.com/_site_components/images/weather/switch-weather.png"
			intImage = 2
			return(false);
			
			case 2:
			toggle.src = "http://www.giantsridge.com/_site_components/images/weather/switch-snow.png"
			intImage = 1
			return(false);
 		}
	}
	
	function hidediv() { 
	if (document.getElementById) { // DOM3 = IE5, NS6 
	document.getElementById('switch1').style.visibility = 'hidden'; 
	} 
	else { 
	if (document.layers) { // Netscape 4 
	document.hideshow.visibility = 'hidden'; 
	} 
	else { // IE 4 
	document.all.hideshow.style.visibility = 'hidden'; 
	} 
	} 
	}
	
	
	function showdiv() { 
	if (document.getElementById) { // DOM3 = IE5, NS6 
	document.getElementById('switch1').style.visibility = 'visible'; 
	} 
	else { 
	if (document.layers) { // Netscape 4 
	document.hideshow.visibility = 'visible'; 
	} 
	else { // IE 4 
	document.all.hideshow.style.visibility = 'visible'; 
	} 
	} 
	}
	
	function hidediv2() { 
	if (document.getElementById) { // DOM3 = IE5, NS6 
	document.getElementById('switch2').style.visibility = 'hidden'; 
	} 
	else { 
	if (document.layers) { // Netscape 4 
	document.hideshow.visibility = 'hidden'; 
	} 
	else { // IE 4 
	document.all.hideshow.style.visibility = 'hidden'; 
	} 
	} 
	}
	
	
	function showdiv2() { 
	if (document.getElementById) { // DOM3 = IE5, NS6 
	document.getElementById('switch2').style.visibility = 'visible'; 
	} 
	else { 
	if (document.layers) { // Netscape 4 
	document.hideshow.visibility = 'visible'; 
	} 
	else { // IE 4 
	document.all.hideshow.style.visibility = 'visible'; 
	} 
	} 
	} 