

//	To add or remove any menu items, refer to the legends below.
//	If you are not familiar with JavaScript and arrays, you may
//	familiarize yourself at the following url:
//		http://hotwired.lycos.com/webmonkey/98/04/index1a_page8.html
// 
//	KEY*
//	-----------------------
//	nav0 = None
//	nav1 = Home
//	nav2 = Company Profile
//	nav3 = LEED Certification
//	nav4 = Living Laboratories
//	nav6 = Resources
//
//	* It's crucial that each html file initializes the varible named thisMenuName
//	For example, "About Us" pages should have nav1 assigned to thisMenuName:
//		thisMenuName='nav1';
//	Refer to templates for working examples


/*********************************************************************
	1ST LEVEL NAV

	menus[menu_idx]= new Array("a", "b", "c", int); menu_idx++;

	WHERE:	a = name of the navigation/main menu item
			b = text for the menu item
			c = url (absolute)
			int = 1 if submenu, 0 if no submenu

*********************************************************************/
var menus = new Array();
var menu_idx = 0;
menus[menu_idx]= new Array("nav1", "Home", "index.html", 1); menu_idx++;
menus[menu_idx]= new Array("nav2", "Company Profile", "company_profile.html", 1); menu_idx++;
menus[menu_idx]= new Array("nav3", "LEED Certification", "leed_certification.html", 1); menu_idx++;
menus[menu_idx]= new Array("nav4", "Living Laboratories", "living_labs.html", 1); menu_idx++;
menus[menu_idx]= new Array("nav5", "News", "news.html", 1); menu_idx++;
menus[menu_idx]= new Array("nav6", "Resources", "resources.html", 1); menu_idx++;

