		function init() {
			//==========================================================================================
			// if supported, initialize TransMenus
			//==========================================================================================
			// Check isSupported() so that menus aren't accidentally sent to non-supporting browsers.
			// This is better than server-side checking because it will also catch browsers which would
			// normally support the menus but have javascript disabled.
			//
			// If supported, call initialize() and then hook whatever image rollover code you need to do
			// to the .onactivate and .ondeactivate events for each menu.
			//==========================================================================================
			if (TransMenu.isSupported()) {
				TransMenu.initialize();

				// hook all the highlight swapping of the main toolbar to menu activation/deactivation
				// instead of simple rollover to get the effect where the button stays hightlit until
				// the menu is closed.
								
				menu1.onactivate = function() { document.getElementById("navaboutus").className = "hover"; MM_swapImage('NavBtnAboutUs','','/images/nav-about_us-over.gif',1); }
				menu1.ondeactivate = function() { document.getElementById("navaboutus").className = ""; MM_swapImgRestore(); }

				menu2.onactivate = function() { document.getElementById("navmarketsserved").className = "hover"; MM_swapImage('NavBtnMarketsServed','','/images/nav-markets_served-over.gif',1); }
				menu2.ondeactivate = function() { document.getElementById("navmarketsserved").className = ""; MM_swapImgRestore(); }

				menu3.onactivate = function() { document.getElementById("navsolutions").className = "hover"; MM_swapImage('NavBtnSolutions','','/images/nav-solutions-over.gif',1); }
				menu3.ondeactivate = function() { document.getElementById("navsolutions").className = ""; MM_swapImgRestore(); }

				menu4.onactivate = function() { document.getElementById("navservices").className = "hover"; MM_swapImage('NavBtnServices','','/images/nav-services-over.gif',1); }
				menu4.ondeactivate = function() { document.getElementById("navservices").className = ""; MM_swapImgRestore(); }

				menu5.onactivate = function() { document.getElementById("navsupport").className = "hover"; MM_swapImage('NavBtnSupport','','/images/nav-support-over.gif',1); }
				menu5.ondeactivate = function() { document.getElementById("navsupport").className = ""; MM_swapImgRestore(); }

				menu6.onactivate = function() { document.getElementById("navnewsevents").className = "hover"; MM_swapImage('NavBtnNewsEvents','','/images/nav-news_and_events-over.gif',1); }
				menu6.ondeactivate = function() { document.getElementById("navnewsevents").className = ""; MM_swapImgRestore(); }
				
				menu7.onactivate = function() { document.getElementById("downloads").className = "hover"; MM_swapImage('NavBtnDownloads','','/images/nav-downloads-over.gif',1); }
				menu7.ondeactivate = function() { document.getElementById("downloads").className = ""; MM_swapImgRestore(); }

				
				// document.getElementById("navdownloads").onmouseover = function() { ms.hideCurrent(); this.className = "hover"; MM_swapImage('NavBtnDownloads','','/images/nav-downloads-over.gif',1);}
				// document.getElementById("navdownloads").onmouseout = function() { this.className = ""; MM_swapImgRestore(); }

				document.getElementById("navcontactus").onmouseover = function() { ms.hideCurrent(); this.className = "hover"; MM_swapImage('NavBtnContactUs','','/images/nav-contact_us-over.gif',1);}
				document.getElementById("navcontactus").onmouseout = function() { this.className = ""; MM_swapImgRestore(); }
			}
		}
