		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.
								
				document.getElementById("navhome").onmouseover = function() { ms.hideCurrent(); this.className = "hover"; MM_swapImage('NavBtnHome','','images/nav_home_over.gif',1);}
				document.getElementById("navhome").onmouseout = function() { this.className = ""; MM_swapImgRestore(); }
				
				document.getElementById("navleadership").onmouseover = function() { ms.hideCurrent(); this.className = "hover"; MM_swapImage('NavBtnLeadership','','images/nav_leadership_over.gif',1);}
				document.getElementById("navleadership").onmouseout = function() { this.className = ""; MM_swapImgRestore(); }

				//menu1.onactivate = function() { document.getElementById("navleadership").className = "hover"; MM_swapImage('NavBtnLeadership','','images/nav_leadership_over.gif',1); }
				//menu1.ondeactivate = function() { document.getElementById("navleadership").className = ""; MM_swapImgRestore(); }

				menu2.onactivate = function() { document.getElementById("navportfolio").className = "hover"; MM_swapImage('NavBtnPortfolio','','images/nav_portfolio_over.gif',1); }
				menu2.ondeactivate = function() { document.getElementById("navportfolio").className = ""; MM_swapImgRestore(); }
				
				menu3.onactivate = function() { document.getElementById("navaboutecuador").className = "hover"; MM_swapImage('NavBtnAboutEcuador','','images/nav_about_ecuador_over.gif',1); }
				menu3.ondeactivate = function() { document.getElementById("navaboutecuador").className = ""; MM_swapImgRestore(); }

				document.getElementById("navinvestors").onmouseover = function() { ms.hideCurrent(); this.className = "hover"; MM_swapImage('NavBtnInvestors','','images/nav_investors_over.gif',1);}
				document.getElementById("navinvestors").onmouseout = function() { this.className = ""; MM_swapImgRestore(); }

				document.getElementById("navnews").onmouseover = function() { ms.hideCurrent(); this.className = "hover"; MM_swapImage('NavBtnNews','','images/nav_news_over.gif',1);}
				document.getElementById("navnews").onmouseout = function() { this.className = ""; MM_swapImgRestore(); }

				document.getElementById("navcontact").onmouseover = function() { ms.hideCurrent(); this.className = "hover"; MM_swapImage('NavBtnContact','','images/nav_contact_over.gif',1);}
				document.getElementById("navcontact").onmouseout = function() { this.className = ""; MM_swapImgRestore(); }
			
			}
		}
