function getClasses(){
	window.forsideClass = document.getElementById("forside").getAttribute("class");		
	window.produkterClass = document.getElementById("produkter").getAttribute("class");		
	window.referencerClass = document.getElementById("referencer").getAttribute("class");		
	window.omStoejClass = document.getElementById("omStoej").getAttribute("class");		
	window.omBlClass = document.getElementById("omBl").getAttribute("class");		
	window.kontaktClass = document.getElementById("kontakt").getAttribute("class");	
}

function over(){
	document.getElementById("forside").setAttribute("class", "off");	
	document.getElementById("produkter").setAttribute("class", "off");		
	document.getElementById("referencer").setAttribute("class", "off");		
	document.getElementById("omStoej").setAttribute("class", "off");		
	document.getElementById("omBl").setAttribute("class", "off");	
	document.getElementById("kontakt").setAttribute("class", "off");		
	
}

function out(){
	document.getElementById("forside").setAttribute("class", window.forsideClass);	
	document.getElementById("produkter").setAttribute("class", window.produkterClass);		
	document.getElementById("referencer").setAttribute("class", window.referencerClass);	
	document.getElementById("omStoej").setAttribute("class", window.omStoejClass);		
	document.getElementById("omBl").setAttribute("class", window.omBlClass);	
	document.getElementById("kontakt").setAttribute("class", window.kontaktClass);		
}



