<!--
startList = function() {
    if (document.all && document.getElementById) {
        navRoot = document.getElementById("rootMenu");
        for (i=0; i<navRoot.childNodes.length; i++) {
            node = navRoot.childNodes[i];
            if (node.className=="cat" || node.className=="cat_sel") {
                node.onmouseover=function() {
                    this.className+="_on";
                    if (this.childNodes[1].offsetWidth < this.offsetWidth) {
                    this.childNodes[1].style.width=this.offsetWidth+"px";
                }
                    }
                node.onmouseout=function() {
                    this.className=this.className.replace("_on", "");
                    }
                node.style.zIndex=100+navRoot.childNodes.length-i;
            }
        }
    } else if ($ns=document.cookie.substr(document.cookie.indexOf("NS=")+3,2)) {
		if ('70'==$ns || '71'==$ns || 'mz'==$ns) {
			navRoot = document.getElementById("rootMenu");
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.className=="cat" || node.className=="cat_sel") {
					node.onmouseover=function() {
						hideTab(this);
					}
					node.onmouseout=function() {
						showTabNS();
					}
				}
			}
		}
	}
}
hideTab = function(node) {
    var tabX = node.offsetLeft;
    var tabY = node.offsetTop;
    var tabWidth = node.childNodes[3].offsetWidth;
    var nextNode = node.nextSibling;
    var testX;
    while (nextNode!=null) {
        if (Math.abs(nextNode.offsetTop-tabY)>2) {
			testX=nextNode.offsetLeft;
            if (testX>=tabX && testX<=tabX+tabWidth) {
				nextNode.style.visibility="hidden";
            }
        }
	nextNode = nextNode.nextSibling;
    }
}

showTabNS = function() {
    navRoot = document.getElementById("rootMenu");
    for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.className=="cat" || node.className=="cat_sel") {
			node.style.visibility="visible";
		}
	}
}
-->