<!-- hide this stuff from other browsers 



// Secondary Drop Downs
startList = function() {
	activeNode = '';		
	onState = "current";
	navRoot = document.getElementById("tnav");
	
	
	for (i=0; i<navRoot.childNodes.length; i++) {			
		node = navRoot.childNodes[i];
		
		//Find Current
		if ((node.nodeName=="LI") && (node.className == onState)) {
			activeNode = node;
		}	
		

		if (node.nodeName=="LI") {
			//On
			node.onmouseover=function() {
				if (this != activeNode) {
					activeNode.className = '';
				}
				if (document.all&&document.getElementById) {
					this.className+=" over";
				}				
			}
			// Off
			node.onmouseout=function() {
				if (this != activeNode) {
					activeNode.className = onState;
				}
				if (document.all&&document.getElementById) {
					this.className=this.className.replace(" over", "");
				}				
			}
			
		}
		
	}
	
}

window.onload = startList;


// end hiding javascript -->