
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 snus info";
            node.onclick=function() {
                if (this.className == "closed") {
                    this.className="open";
                    this.title = "Hide snus info";
                } else {
                    this.className="closed";
                    this.title = "Show snus info";
                }
            }
        }
    }
}
window.onload=startList;

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


