function switchWeatherMap(ID)
{
	for (i = 1; i < 6; i++)	{
		if (i == ID)		{ document.getElementById("weatherMap" + i).style.display = "block"; }
		else			{ document.getElementById("weatherMap" + i).style.display = "none";	}
	}
}

/*

function switchMenuItem(ID) {
				document.getElementById("weatherMenu" + ID).style.backgroundColor = "#fff";
				document.getElementById("weatherMenu" + ID).style.borderWidth = "1px 1px 0px 1px";
				document.getElementById("weatherMenu" + ID).style.borderColor = "#f5ab0a";
				document.getElementById("weatherMenu" + ID).style.borderStyle = "solid";

var obj = {prop1: ID-1, prop2: ID-2, prop3: ID-3, prop4: ID-4, prop5: ID-5, prop6: ID-6, prop1: ID+1, prop2: ID+2, prop3: ID+3, prop4: ID+4, prop5: ID+5, prop6: ID+6};
for each (var item in obj) {
				document.getElementById("weatherMenu" + item).style.backgroundColor = "none";
				document.getElementById("weatherMenu" + item).style.borderWidth = "0px 0px 1px 0px";
				document.getElementById("weatherMenu" + item).style.borderColor = "#f5ab0a";
				document.getElementById("weatherMenu" + item).style.borderStyle = "solid";
				document.getElementById("weatherMenu" + item).style.paddingBottom = "0px";
				document.getElementById("weatherMenu" + item).style.paddingTop = "1px";
}

}

*/
