// 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 = [
	['About Us', '/pages/NewPage.php?pg=about', null,
		['Welcome', '/pages/NewPage.php?pg=welcome', null],
		['Bulletins', '/pages/Bulletin.php', 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'
		['History', '/pages/NewPage.php?pg=history', null],
		['Leaders / Elders', '/pages/NewPage.php?pg=elders'],
		['Pastor', '/pages/NewPage.php?pg=pastor', null,],
		['Organizations<img border="0" src="/images/arrow.gif" />', '/pages/NewPage.php?pg=organizations', null,
			['Elders', '/pages/NewPage.php?pg=elders'],
			['Stewardship', '/pages/NewPage.php?pg=stewardship'],
			['School Committee', '/pages/NewPage.php?pg=schoolcommittee'],
			['Maintenance', '/pages/NewPage.php?pg=maintenance'],
			['Evangelism', '/pages/NewPage.php?pg=evangelism'],
			['Education', '/pages/NewPage.php?pg=education'],
			['Endowment / Trust Fund', '/pages/NewPage.php?pg=endowment'],
			['Ladies Guild', '/pages/NewPage.php?pg=dorcas'],
			['Foundation', '/pages/NewPage.php?pg=foundation'],
			['Sunday School', '/pages/NewPage.php?pg=sundayschool'],
			['Choir', '/pages/NewPage.php?pg=choir']
		],
	],
	['Church News', '/pages/NewPage.php?pg=news', null,
		['Church Events', '/pages/Calendar.php'],
		// this is how multiple item scope settings are defined
		['Pastor\'s Weekly Note', '/pages/NewPage.php?pg=pastor'],
		['Congregational News', '/pages/NewPage.php?pg=news'],
		['WELS Connection', 'http://www.wels.net/news-events/wels-connection'],
		['WELS Newsfeeds', 'http://www.wels.net/news-events/together'],
		['Submit Article (Login)', '/pages/NewPage.php?pg=login'],
	],
	['Ministries', '/pages/NewPage.php?pg=ministries', null,
		['Bible Studies', '/pages/NewPage.php?pg=bible'],
		['Catechism', '/pages/NewPage.php?pg=catechism'],
		['Christian Parenting', 'http://archive.wels.net/cgi-bin/site.pl?index-PCL'],
		['LWMS & Ladies Aid', '/pages/NewPage.php?pg=dorcas'],
		['Foundation (Youth Group)', '/pages/NewPage.php?pg=foundation'],
		['Sunday School', '/pages/NewPage.php?pg=sundayschool'],
		['Pray for Me', '/pages/NewPage.php?pg=prayforme']
	],
	['School', 'http://www.gslcrschool.org/index.php', null,
		['Classrooms', 'http://www.gslcrschool.org/pages/NewPage.php?pg=classrooms'],
		['Extra Curricular', 'http://www.gslcrschool.org/pages/NewPage.php?pg=extracurr'],
		['Forms', 'http://www.gslcrschool.org/pages/NewPage.php?pg=forms'],
		['Events / Calendar', 'http://www.gslcrschool.org/pages/Calendar.php'],
		['About Us', 'http://www.gslcrschool.org/pages/NewPage.php?pg=schoolabout'],
		['School Assistance', 'http://www.gslcrschool.org/pages/NewPage.php?pg=assistance']
	]
];

