﻿// 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,
						['SUNDAY SERVICE', ' sunday_service.htm'],
						['WEEKLY SERVICES', ' weekly_services.htm'],
						['NEWS LETTER', ' newsletter.htm']
					],
					['ABOUT US', 'aboutus.htm', null,
						['STATEMENT OF FAITH', ' statement_of_faith.htm']
					],
					['PASTORAL TEAM', 'pastoral_team.htm', null,
						['EVANGELISTS', ' evangelists.htm'],
						['DEACONS', ' deacons.htm'] // there must be no comma after the last element
					],
					['MINISTRIES', 'ministries.htm', null,
						['YOUTH & CHILDREN', ' children_youth.htm'],
						['OTHER MINISTRIES', ' other_ministries.htm'],
						['HOME CELLS', ' homecells.htm'],
						['OUTREACH', ' outreach.htm']// there must be no comma after the last element
					],
					
					['DONATION', 'donation.htm', null],
					['CONTACT US', 'contactus.htm', null],
				];
					
			
		


