// 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 = [
	['Welcome',null, null,
	 	['Welcome', 'index.html'],
		['Theology', 'theology.html'],
		['Our Pastor', 'pastor.html'],
		['Governing Body', 'governing_body.html']
	],
	['Worship','worship.html'],
	['What\'s new',null, null,
	 	['Calendar', 'calendar.html'],
		['Upcoming Activities', 'activities.html']
	],
	['Programs', null, null,
	 	['Education Ministries', 'education.html', null,
		 	['Children and Families', 'http://www.southmin.org/children/'],
			['Youth / Students', 'http://www.southmin.org/students/']
		 ],
	 	['Mission and Outreach', 'mission.html'],
	 	['Community Life', 'community.html'],
	 	['Worship & Music', 'music.html']
	],
	['Children and Families', 'http://www.southmin.org/children/'],
	['Youth / Students', 'http://www.southmin.org/students/'],
	['Newsletter', 'newsletter.html'],
	['Gallery', 'gallery.html'],
	['Partner Groups', 'links.html', null,
	 	['PC(USA)', 'http://www.pcusa.org/',{'tw':'_blank'}],
		['Cascades Presbytery', 'http://www.cascadespresbytery.org/default.html',{'tw':'_blank'}],
		['Celebration of Creativity', 'http://www.celebrationofcreativity.com/index.html',{'tw':'_blank'}],
	 	['Habitat for Humanity', 'http://www.habitat.org/',{'tw':'_blank'}],
	 	['More Light', 'http://www.mlp.org/',{'tw':'_blank'}],
		['Rebuilding Together', 'http://www.rebuildingtogetherwashingtoncounty.org/',{'tw':'_blank'}],
		['Welcoming Congregations', 'http://www.welcomingcongregations.org',{'tw':'_blank'}],
		['Progressive Christianity', 'http://www.tcpc.org/', {'tw':'_blank'}]
	],
	['Contact US', null, null,
	 	['Map & Directions', 'map.html'],
		['Staff Directory', 'directory.html'],
		['Staff Bio', 'bio.html'],
		['Church Leadership', 'leadership.html']
	 ],
	
];


