<!--
		NavMenu3();
		
		function NavMenu3() {
			var listULs=document.getElementById('nav_menu').getElementsByTagName("UL");
			// Search through all UL's within nav_menu
			for (i=0; i<listULs.length;i++) {
				var thisUL=listULs[i];
				//debug.innerHTML=debug.innerHTML + thisUL.className + "<BR>";
				var listLIs = thisUL.childNodes;
				// Search through all LI's within UL
				for (j=0; j<listLIs.length;j++) {
					thisLI=listLIs[j];
					listAs=thisLI.childNodes;
					// Search through all A's within LI
					for (k=0; k<listAs.length;k++) {
						thisA=listAs[k];
						if (thisA.nodeName=='A') {
							// This is one of the links. It should be unique.
							if (thisA.href==document.location.href) {
								if (thisUL.className=='blockMenu') {
									thisLI.className='blockMenuCurrentActive';
								} else if (thisUL.className=='blockMenu2') {
									thisLI.className='blockMenu2CurrentActive';
								} else if (thisUL.className=='blockMenu3') {
									thisLI.className='blockMenu3CurrentActive';
								}
							}
						}	
					}
				}
			}
		}
-->