// 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'],
	['ABOUT US', 'about.html', null,
		['History', 'about.html'],
		['Activities', 'activities.html'],
		['Vision, Mission and Goals', 'mission.html'],
		['The Board', 'about-yav-board.html'],
		['Organization Structure', 'org-structure.html'],
		['Sponsors & Partners', 'sponsors.html'],
		['Get Involved', 'get_involved.html']
	],
	['WHAT WE DO', 'we-do.html'],
	['PUBLICATIONS', 'plans_reports.html', null,
		['Sikika Plans and Reports', 'plans_reports.html'],
		['Sikika Works Through Partners', 'yav_works_partner.html'],
		['Sikika Works in Media', 'yav_works_media.html'],
		['Commentaries', 'commentary.html'],
		['Press Release', 'press_release.html'],
		['NewsLetters', 'newsletters.html'],
		['Analytical Works', 'analytical_works.html'],
		['Research', 'research.html'],
		['Sikika Folders', 'yav_folders.html'],
		['Sikika Posters', 'yav_posters.html']
	],
	['NEWS & EVENTS','news.html',null,
	 	['News', 'news.html'],
	 	['Events', 'event.html'],
		['Employment Opportunity', 'employment.html']
	 ],
	['CONTACT US', 'contacts.html']
];

