		activateMenu = function(mainMenu) {
			if (document.all && document.getElementById(mainMenu).currentStyle) {
				var navroot = document.getElementById(mainMenu);
				var lis=navroot.getElementsByTagName("LI");
				for (i=0; i<lis.length; i++) {
					var uls = lis[i].getElementsByTagName('UL');
					if( uls.length > 0 ){
						lis[i].onmouseover=function() {
							this.getElementsByTagName('UL')[0].style.display="block";
						}
						lis[i].onmouseout=function() {
							this.getElementsByTagName('UL')[0].style.display="none";
						}
					}
				}
			}
		}
