function initParkList()
{
	if (document.getElementById("parks"))
	{
		var links = document.getElementById("parks").getElementsByTagName("li");
	
		for (var i=0; i<links.length; i++)
		{
			links[i].onmouseover = function() { document.getElementById("map_selected").style.backgroundImage = "url(/Files/System/Kort/highlight_" + this.className + ".gif)" }
			links[i].onmouseout = function() { document.getElementById("map_selected").style.backgroundImage = "" }
		}
	}
}

window.onload = function() { initParkList() }