// 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 = [
	['News & Information', null, null,
	 	['Events Calendar', 'calendar.html'],
		['Newsletter', 'newsletters.html']
	 ],
	['People of Peace PC', 'people.html'],
	['Pastor\'s Page', null, null,
	 	['Bio', 'bio.html'],
		['Sermons', 'sermons.html']
	 ],
	['Eugene Scottish Festival', 'http://www.eugenescottishfestival.com/', {'tw':'_blank'}],
	['Partners', 'partners.html'],
	['Support Peace PC', 'support.html'],
	['Home Page', 'index.html']
];

