
//  ***************  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 = "show";
			node.onclick=function() {
				if (this.className == "closed") {
					this.className="open";
					this.title = "hide";
				} else {
					this.className="closed";
					this.title = "show";
				}
			}
		}
	}
}
window.onload=startList;

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