
<!-- //
		
//Banner
var flashvars = {};
var params = {};
params.scale = "noscale";
params.salign = "tl";
params.wmode = "transparent";
var attributes = {};
swfobject.embedSWF("swf/header_v6.swf", "banner", "984", "159", "8.0", false, flashvars, params, attributes);


// 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;


//-->			
			
			