<!--

		var strOverItem='';
		
		function showNavLayer(theL) {
			if (document.getElementById(theL)) {
				document.getElementById(theL).style.display = '';
				strOverItem = theL;
			}
		}
		
		function hideNavLayer(theL,lngDelayMS) {
			if (document.getElementById(theL)) {
				window.setTimeout('actualHide(\''+theL+'\');', lngDelayMS);
				strOverItem = '';
			}
		}
		
		function actualHide(strDivName) {
			if (document.getElementById(strDivName)) {
				if (strDivName != strOverItem) {
					document.getElementById(strDivName).style.display = 'none';
				}
			}
		}
		
		function overNav(objToUse) {
			showNavLayer();
			objToUse.style.backgroundColor = '#FFFFFF';
			objToUse.style.color = '#000000';
		}
		
		function outHNav(objToUse) {
			objToUse.style.backgroundColor = '#666666';
			objToUse.style.color = '';
		}
		
		function outNav(objToUse) {
			objToUse.style.backgroundColor = '#999999';
			objToUse.style.color = '';
		}
		
		function outNavU(objToUse) {
			objToUse.style.backgroundColor = '#CCCCCC';
			objToUse.style.color = '';
		}
		
		
		function outNavUU(objToUse) {
			objToUse.style.backgroundColor = '#95D5EA';
			objToUse.style.color = '';
		}
		
		function tlink (derlink){
			location.href = derlink
		}

// -->