// Navigation Propertiesvar webSiteWidth = 900;var curNav = null;var delay = 250;var timer = 0;// |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||// Navigation Functionsfunction showSub( subName, xOffset ){	var e, windowWidth, webSiteLeft;	cancelHide();	hideSubNavigation();	e = document.getElementById(subName);	windowWidth = document.all ? document.body.clientWidth : window.innerWidth;	webSiteLeft = (windowWidth - webSiteWidth)/2;	if( webSiteLeft < 0 ) webSiteLeft = 0;	e.style.left = webSiteLeft + xOffset;	e.style.visibility = 'visible';	curNav = subName;}function hideSubNavigation(){	if( curNav != null ){		e = document.getElementById(curNav);		e.style.visibility = 'hidden';		curNav = null;	}}function hideSub(){	timer = setTimeout('hideSubNavigation()', delay);}function cancelHide(){	clearTimeout(timer);	timer = 0;}function navOver(e){	e.style.backgroundColor = '#E6FFFF';	e.style.color = '#003366';}function navOut(e){	e.style.backgroundColor = '#B5F9FF';	e.style.color = '#003366';}