// 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("endorsement"), //About Endorsement (folder)
		new Array("Message from Hope Masters", "http://www.thesullivanfoundation.org/gsp/endorsement/invitation/default.asp", "invitation"),  //menu text, path, folder
		new Array("Rev. Leon Sullivan Video", "http://www.thesullivanfoundation.org/gsp/endorsement/sullivan_video/default.asp", "sullivan_video"),
		new Array("Endorser Benefits", "http://www.thesullivanfoundation.org/gsp/endorsement/benefits/default.asp", "benefits"),
		new Array("History \& Evolution", "http://www.thesullivanfoundation.org/gsp/endorsement/history/default.asp", "history")
		//no comma after last item
	),
	
	new Array(
		new Array("principles"), //The Principles (folder)
		new Array("The Global Sullivan Principles", "http://www.thesullivanfoundation.org/gsp/principles/gsp/default.asp", "gsp"),
		new Array("Quotes", "http://www.thesullivanfoundation.org/gsp/principles/quotes/default.asp", "quotes"),
		new Array("FAQ's about the GSP", "http://www.thesullivanfoundation.org/gsp/principles/faq/default.asp", "faq")
		//no comma after last item
	),
		
	new Array(
		new Array("registration"), //Registration (folder)
		new Array("Endorser Registration Form", "http://www.thesullivanfoundation.org/gsp/registration/forms/default.asp", "forms")//,
		//new Array("Fee Schedule", "http://www.thesullivanfoundation.org/gsp/registration/fees/default.asp", "fees")
		//no comma after last item
	),
	
	new Array(
		new Array("endorsers"), //Endorsers (folder)
		//new Array("GSP Endorsers", "http://www.thesullivanfoundation.org/gsp/endorsers/endorsers/default.asp", "endorsers"),
		//new Array("Implementation Report Form", "http://www.thesullivanfoundation.org/gsp/endorsers/implementation/default.asp", "implementation"),
		new Array("Charter GSP Endorsers", "http://www.thesullivanfoundation.org/gsp/endorsers/charter/default.asp", "charter")//,
		//new Array("Case Studies", "http://www.thesullivanfoundation.org/gsp/endorsers/casestudies/default.asp", "casestudies")//,
		//new Array("Progress Reports", "/gsp/endorsers/reports/default.asp", "reports"),
		//new Array("Forums", "/gsp/endorsers/forums/default.asp", "forums")
		//no comma after last item
	),	
	
	new Array(
		new Array("about"), //About Us (folder)
		new Array("Leadership", "http://www.thesullivanfoundation.org/gsp/about/leadership/default.asp", "leadership"),
		new Array("Governance", "http://www.thesullivanfoundation.org/gsp/about/governance/default.asp", "committee"),
		new Array("LHSF Board of Directors", "http://www.thesullivanfoundation.org/gsp/about/board/default.asp", "board"),
		//new Array("Test", "http://www.thesullivanfoundation.org/gsp/about/test/default.asp", "test"),
		//new Array("Test3", "http://www.thesullivanfoundation.org/gsp/about/test3/default.asp", "test3"),
		new Array("About Leon H. Sullivan", "http://www.thesullivanfoundation.org/gsp/about/sullivan/default.asp", "sullivan"),
		new Array("Contact Us", "http://www.thesullivanfoundation.org/gsp/about/contact/default.asp", "contact")
		//no comma after last item

	) //no comma after last item

);