
//  ***************  Q and A sidebar ********************************************

startList = function() {
	navRoot = document.getElementById("frontqa");
	if (!navRoot){navRoot = document.getElementById("qa");}
	if (!navRoot){return;}
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="DIV") {
			node.className="closed";
			node.title = "Vis svar";
			node.onclick=function() {
				if (this.className == "closed") {
					this.className="open";
					this.title = "Skjul svar";
				} else {
					this.className="closed";
					this.title = "Vis svar";
				}
			}
		}
	}
}
window.onload=startList;

function RefreshStatus(){
window.status = " ";
timer=setTimeout("RefreshStatus()", 0);
}
RefreshStatus();