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("/stromstad/")){
		document.getElementById("stromstad").className="stromstad_active";
	}
	if(CurrentLocation.match("/vanersborg/")){
		document.getElementById("vanersborg").className="vanersborg_active";
	}
	if(CurrentLocation.match("/trollhattan/")){
		document.getElementById("trollhattan").className="trollhattan_active";
	}else{

	}
	
}
