// 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("about"), //About the Foundation section
		new Array("Overview", "/SEF/about/default.asp", "index"),  //menu text, path, folder
		new Array("Our Mission", "/SEF/about/mission/default.asp", "mission"),
		new Array("History", "/SEF/about/history/default.asp", "history"),
		new Array("Board of Trustees", "/SEF/about/board/default.asp", "board"),
		new Array("Annual Report", "/SEF/about/report/default.asp", "report")//last item does not have a comma at the end
	),

	new Array(
		new Array("scholarships"), //Scholarships section
		new Array("Overview", "/SEF/scholarships/default.asp", "index"),
		new Array("Scholarship Recipients", "/SEF/scholarships/recipients/default.asp", "recipients"),
		new Array("Applications", "/SEF/scholarships/applications/default.asp", "applications"),
			new Array("Application for SEF Scholarship", "/SEF/pdfs/sefschappl.pdf"),
			new Array("Application for James H. Patrenos Memorial Scholaraship", "/SEF/pdfs/jameshappl.pdf"),
			new Array("Application for W. Eldridge and Emily Lowe Scholarship", "/SEF/pdfs/loweappl.pdf"),
			new Array("Application for Delta Iota Alumni Scholarship", "/SEF/pdfs/deltaiappl.pdf")//last item does not have a comma at the end
	),

	new Array(
		new Array("grants"), //Grants section
		new Array("Overview", "/SEF/grants/default.asp", "index"),
		new Array("Chapter Fund Program", "/SEF/grants/chapterfunds/default.asp", "chapterfunds"),
		new Array("Matching Grant Recipients", "/SEF/grants/matching/default.asp", "matching"),
		new Array("Travel Assistance Grant Recipients", "/SEF/grants/travel/default.asp", "travel")//,
		//new Array("Applications", "/SEF/grants/applications/default.asp", "applications"),
		//	new Array("Application for Overseas Travel Grant", "/SEF/pdfs/overseasappl.pdf"),
		//	new Array("Application for Chapter Matching Grant", "/SEF/pdfs/chaptergrantappl.pdf"),
		//	new Array("Appication for Province Matching Grant", "/SEF/pdfs/provincegrantappl.pdf")//last item does not have a comma at the end
	),

	new Array(
		new Array("programs"), //Educational Programs section
		new Array("Overview", "/SEF/programs/default.asp", "index"),
		new Array("Sinfonia Winds", "/SEF/programs/winds/default.asp", "winds"),
		new Array("Other Educational Programming", "/SEF/programs/other/default.asp", "other")//last item does not have a comma at the end
	),

	new Array(
		new Array("give"), //Give to Sinfonia section
		new Array("Overview", "/SEF/give/default.asp", "index"),
		new Array("Donate Today", "javascript:newWindow('https://dnbweb1.blackbaud.com/OPXDONATE/AddDonor.asp?cguid=7373C87D-9D13-4A60-A3D8-E6AD32093B7E&sid=33ED7E4A-EB7F-46E7-87EA-97BCAD3A098B&sTarget=https%3A%2F%2Fdnbweb1.blackbaud.com%2FOPXDONATE%2FDonate.asp%3Fcguid%3D7373C87D%252D9D13%252D4A60%252DA3D8%252DE6AD32093B7E%26dpid%3D6352')", "donate"),
		new Array("Giving Clubs and Societies", "/SEF/give/clubs/default.asp","clubs"),
		new Array("Corporate Matching Gifts List", "/SEF/give/corporate/default.asp", "corporate"),
		new Array("Planned Giving Information", "/SEF/give/planned/default.asp", "planned")//last item does not have a comma at the end
	)//last item does not have a comma at the end
);