		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('AboutUs','','/images/nav_about_us_over.gif',1); }
				menu1.ondeactivate = function() { document.getElementById("navaboutus").className = ""; MM_swapImgRestore(); }

				menu2.onactivate = function() { document.getElementById("navserviceofferings").className = "hover"; MM_swapImage('ServiceOfferings','','/images/nav_service_offerings_over.gif',1); }
				menu2.ondeactivate = function() { document.getElementById("navserviceofferings").className = ""; MM_swapImgRestore(); }

				menu3.onactivate = function() { document.getElementById("navproductofferings").className = "hover"; MM_swapImage('ProductOfferings','','/images/nav_product_offerings_over.gif',1); }
				menu3.ondeactivate = function() { document.getElementById("navproductofferings").className = ""; MM_swapImgRestore(); }

				menu4.onactivate = function() { document.getElementById("navindustriesserved").className = "hover"; MM_swapImage('IndustriesServed','','/images/nav_industries_served_over.gif',1); }
				menu4.ondeactivate = function() { document.getElementById("navindustriesserved").className = ""; MM_swapImgRestore(); }

				menu5.onactivate = function() { document.getElementById("navdownloads").className = "hover"; MM_swapImage('Downloads','','/images/nav_downloads_over.gif',1); }
				menu5.ondeactivate = function() { document.getElementById("navdownloads").className = ""; MM_swapImgRestore(); }

				//menu6.onactivate = function() { document.getElementById("navnewsevents").className = "hover"; MM_swapImage('NewsEvents','','images/nav_news_and_events_over.gif',1); }
				//menu6.ondeactivate = function() { document.getElementById("navnewsevents").className = ""; MM_swapImgRestore(); }
				
				document.getElementById("navnewsevents").onmouseover = function() { ms.hideCurrent(); this.className = "hover"; MM_swapImage('NewsEvents','','/images/nav_blog_over.gif',1);}
				document.getElementById("navnewsevents").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(); }
*/
			}
		}
