// main menu item is the one with 3 elements - folder of submenu (if none, use a space), menu text, menu path
// sub menu item is the one with 2 elements - sub menu text, sub menu path
// If you are using quotations (") or an ampersand (&) you will need to put a backslash (\) in front of it.

arrMenu = new Array (

	new Array(
		new Array("areas"), //folder
		new Array("Site and Civil Engineering", "/areas/civileng/index.asp", "civileng"),  //menu text, path, folder
		new Array("Land Planning", "/areas/landplanning/index.asp", "landplanning"),
		new Array("Landscape Architecture", "/areas/landscape/index.asp", "landscape"),
		new Array("Transportation Engineering", "/areas/transportation/index.asp", "transportation"),
		new Array("Sustainable Design and Green Consulting", "/areas/sustainable/index.asp", "sustainable"),
		new Array("Survey", "/areas/survey/index.asp", "survey")//no comma after last item
	),
	
	new Array(
		new Array("projects"), //folder
		new Array("Featured Projects", "/projects/featured/index.asp", "featured"),
			new Array("Site and Civil Engineering", "/projects/featured/civileng"),
			new Array("Landscape Architecture", "/projects/featured/landscape"),
			new Array("Land Planning", "/projects/featured/landplanning"),
			new Array("Transportation Engineering", "/projects/featured/transportation"),
		new Array("Partial Client List", "/projects/clientlist/index.asp", "clientlist")//no comma after last item
	),	
	
	new Array(
		new Array("about"), //folder
		new Array("Our Team", "/about/ourteam/index.asp", "ourteam"),
		new Array("Locations", "/about/locations/index.asp", "locations"),
		new Array("News", "/about/news/index.asp", "news")//no comma after last item
	),	

	new Array(
		new Array("careers"), //no comma after last item
		new Array("Openings", "/careers/openings/index.asp", "openings")
	)//no comma after last item

);