if (TransMenu.isSupported()) {
	var ms = new TransMenuSet(TransMenu.direction.down, 1, 1, TransMenu.reference.bottomLeft);

		
	var menu1 = ms.addMenu(document.getElementById("nav_ourteam"));
		menu1.addItem("Company Overview", "/about_us/about_us.html");
		menu1.addItem("Officers", "/about_us/officers.html");
		menu1.addItem("Board of Directors", "/about_us/directors.html");
		menu1.addItem("External Manager", "/about_us/external_manager.html");
		
	var menu2 = ms.addMenu(document.getElementById("nav_invmgt"));
		menu2.addItem("Shareholder Services", "/investor_relations/shareholder_services.html");
		menu2.addItem("SEC Filings", "/investor_relations/sec_filings.html");
		menu2.addItem("Analyst Coverage", "/investor_relations/analyst_coverage.html");
		menu2.addItem("Event Calendar", "/investor_relations/event_calendar.html");
		menu2.addItem("News & Press Releases", "/investor_relations/news.html");
		menu2.addItem("Corporate Governance", "/investor_relations/corporate_governance.html");
		
	var menu3 = ms.addMenu(document.getElementById("nav_wealthadvisory"));
		///menu3.addItem("Stock Information", "/financials/financials.html");
		///menu3.addItem("Historical Stock Price", "/financials/historical.html");
		///menu3.addItem("Dividend Information", "/financials/dividend.html");
		///menu3.addItem("Quarterly & Annual Highlights", "/financials/highlights.html");
		
	function showLayer(layerName) {
	    if (document.getElementById) {
	        var targetElement = document.getElementById(layerName);
	        targetElement.style.visibility = 'visible';
	    }
	}

	function hideLayer(layerName) {
	    if (document.getElementById) {
	        var targetElement = document.getElementById(layerName);
	        targetElement.style.visibility = 'hidden';
	    }
	}

	TransMenu.renderAll();
	TransMenu.initialize();

	////menu0.onactivate = function() { WCH.Apply('TransMenu0');document.getElementById("nav_ourfirm").src="images/nav_home_on.gif"; };
	////menu0.ondeactivate = function() { WCH.Discard('TransMenu0');document.getElementById("nav_ourfirm").src="images/nav_home.gif"; };
	////menu1.onactivate = function() { WCH.Apply('TransMenu1');document.getElementById("nav_ourteam").src="/images/nav_ourteam_ON.gif"; };
	////menu1.ondeactivate = function() { WCH.Discard('TransMenu1');document.getElementById("nav_ourteam").src="/images/nav_ourteam.gif"; };
	////menu2.onactivate = function() { WCH.Apply('TransMenu2');document.getElementById("nav_invmgt").src="/images/nav_invmgt_ON.gif"; };
	////menu2.ondeactivate = function() { WCH.Discard('TransMenu2');document.getElementById("nav_invmgt").src="/images/nav_invmgt.gif"; };
	////menu3.onactivate = function() { WCH.Apply('TransMenu3');document.getElementById("nav_wealthadvisory").src="/images/nav_wealthadvisory_ON.gif"; };
	////menu3.ondeactivate = function() { WCH.Discard('TransMenu3');document.getElementById("nav_wealthadvisory").src="/images/nav_wealthadvisory.gif"; };
}
