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("/karlskoga/")){
		document.getElementById("karlskoga").className="karlskoga_active";
	}
	if(CurrentLocation.match("/orebro/")){
		document.getElementById("orebro").className="orebro_active";
	}
	if(CurrentLocation.match("/uppsala/")){
		document.getElementById("uppsala").className="uppsala_active";
	}
	if(CurrentLocation.match("/norrkoping/")){
		document.getElementById("norrkoping").className="norrkoping_active";
	}
	if(CurrentLocation.match("/linkoping/")){
		document.getElementById("linkoping").className="linkoping_active";
	}else{

	}
	
}
