<!-- hide this stuff from other browsers 

//open popup
function openBrWindow(theURL,winName,features) { //v2.0
	childWindow = window.open(theURL,winName,features);
	childWindow.focus();
}


function findPos(obj) {
	var curleft = curtop = 0;
	if (obj.offsetParent) {
		do {
				curleft += obj.offsetLeft;
				curtop += obj.offsetTop;
		} while (obj = obj.offsetParent);
		return [curleft,curtop];
	}
}
		

// Secondary Drop Downs
startList = function() {
	activeNode = '';		
	onState = "current";
	navRoot = document.getElementById("nav");
	
	
	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 -->