// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Home', 'index.shtml'],

	['About Us', null, null,
	 	['Board of Directors', 'officers.shtml'],
		['Minutes, Bylaws & Acts', 'documents/index.htm'],
		['Newsletters', 'newsletter.shtml'],
		['Charter Members', 'chartermembers.htm'],
		['Memorial Donations', 'memorial.htm']
	],

	['Support RKCi', null, null,
		['Join Membership', 'join.shtml'],
		['Renew Membership', 'renew.shtml'],
		['Donate', 'donate/index.htm'],
		['T-Shirts', 'tshirt.htm']
	],
	
	['Preserves', null, null,
	 ['GSP','gsp.shtml'],
	 ['Misty','mistypreserve/index.htm']
	],

	['Resources', null, null,
	 ['KY Cave Owner\'s', 'library/A Kentucky Cave Owners Guide To Liability.pdf'],
	 ['What is karst?', 'library/whatiskarst.htm'],
	 ['Brochure', 'brochure.htm'],
	 ['Education', 'education/index.htm']
	],
	
	['Contact Us', 'contact.htm']
];

