function displaySitemap(){
	document.getElementById("SitemapContainer").style.display="block";
}

function hideSitemap(){
	document.getElementById("SitemapContainer").style.display="none";
}

function checkLocation(){

	var CurrentLocation = location.href;

	
	if(CurrentLocation.match("/borlange/")){
		document.getElementById("borlange").className="borlange_active";
		document.getElementById("borlange").style.textDecoration="underline";
	}
	if(CurrentLocation.match("/falun/")){
		document.getElementById("falun").className="falun_active";
		document.getElementById("falun").style.textDecoration="underline";
	}
	else{

	}
	
}
