// 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.html", null,
	],
	['About Us', null, null,
		['History', 'aboutushistory.htm', null,],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['Mission & Vision', 'aboutusmissionandvision.htm', null,],
		['Core Convictions', 'aboutuscoreconvictions.htm', null,],
		['Strategy', 'aboutusstrategy.htm', null,],
		['Staff', 'aboutusstaff.htm', null,],
		['Board of Directors', 'aboutusboard.htm', null,],
		['Advisory Board', 'aboutusadvisory.htm', null,],
		['What Others are Saying', 'aboutuswhatothersaresaying.htm', null,],
	],
	['Tools and Resources', null, null,
		// this is how item scope settings are defined
		['Coming Soon!', null, null],
		// this is how multiple item scope settings are defined
	],
	['Ministry Impact', null, null,
		// this is how item scope settings are defined
		['Clearinghouse', 'clearinghouse.htm', '_blank',],
		['Restorative Justice', 'restorative.htm', '_blank',],
		['Furniture Ministry', 'furniture.pdf', '_blank',],
		['Circles of Support', 'circlesofsupport.htm', '_blank',],
		// this is how multiple item scope settings are defined
	],	
	['Get Involved', null, null,
		['Support the Ministry', 'getinvolvedsupporttheministry.php'],
		['Donate Now', 'donate.htm'],
		['Volunteer', 'getinvolvedvolunteeropportunities.htm'],
		['Event Calendar', 'calendar.html'],
	]
];

