function TransMenuInit() {
	//==========================================================================================
	// 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.
		
		// WITH submenu
		//menu_home.onactivate = function() { document.getElementById("home").className = "hover"; };
		//menu_home.ondeactivate = function() { document.getElementById("home").className = ""; };
		
		// WITHOUT submenu
		//document.getElementById("home").onmouseover = function() { ms.hideCurrent(); this.className = "hover"; }
		//document.getElementById("home").onmouseout = function() { this.className = ""; }
		
		// menu_news.onactivate = function() { document.getElementById("news").className = "hover"; };
		// menu_news.ondeactivate = function() { document.getElementById("news").className = ""; };

		// menu_events.onactivate = function() { document.getElementById("events").className = "hover"; };
		// menu_events.ondeactivate = function() { document.getElementById("events").className = ""; };

		// menu_forum.onactivate = function() { document.getElementById("forum").className = "hover"; };
		// menu_forum.ondeactivate = function() { document.getElementById("forum").className = ""; };

		// menu_classifieds.onactivate = function() { document.getElementById("classifieds").className = "hover"; };
		// menu_classifieds.ondeactivate = function() { document.getElementById("classifieds").className = ""; };
		
		// menu_launches.onactivate = function() { document.getElementById("launches").className = "hover"; };
		// menu_launches.ondeactivate = function() { document.getElementById("launches").className = ""; };
		
		// menu_journals.onactivate = function() { document.getElementById("journals").className = "hover"; };
		// menu_journals.ondeactivate = function() { document.getElementById("journals").className = ""; };
						
		// menu_gallery.onactivate = function() { document.getElementById("gallery").className = "hover"; };
		// menu_gallery.ondeactivate = function() { document.getElementById("gallery").className = ""; };
		
		// menu_wx.onactivate = function() { document.getElementById("wx").className = "hover"; };
		// menu_wx.ondeactivate = function() { document.getElementById("wx").className = ""; };

		// document.getElementById("home").onmouseover = function() { ms.hideCurrent(); this.className = "hover"; }
		// document.getElementById("home").onmouseout = function() { this.className = ""; }
	}
}
