// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]

var MENU_ITEMS = [
	['About Us', null, null,
		['Fathers Message', '/info/message.asp', null],
		['St. George', '/info/saint.asp', null],
		['Parish History', '/info/history.asp', null],
		['Parish Events', '/info/events.asp', null],
		['Parish Calendar', '/info/calendar.asp', null],
	],
	['Ministries', null, null,
		['Philoptochos', '/philoptochos/', null],
		['Sunday School', '/sundayschool/', null],
		['GOYA', '/goya/', null],
		['JOY', '/joy/', null],
		['HOPE', '/hope/', null],
		['Byzantine Choir', '/bc/', null],
	],
	['Organizations', null, null,
		['AHEPA', '/ahepa/', null],
		['Daughters of Penelope', '/dp/', null],
		['Dance Groups', '/dg/', null],
		['Parish Council', '/pc/', null],
		['Greek School', '/gs/', null],
	],
	['Information', null, null,
		['For Vistors', '/info/visitors.asp', null],
		['Greek Festival', '/gf/', null],
		['..', '/'],
		['Helpful Info', '/info/info.asp'],
		['Orthodoxy in the Home', '/info/christian orthodoxy.asp'],
		['Orthodox Calendar', 'http://www.goarch.org/chapel/calendar', {'tw':'_blank'}]
	],
	['Contact Us', '/info/contact.asp']
];