// 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', null,null,
	 	['About DBA', 'Pages/About_us.php'],
	 	['Address Book', 'Pages/Address.php'],
	 	
	 ],
	['Prayer Matters','Pages/Prayer_Matter.php'],
	['Activities', null,null,
	 	['Weekly Activities', 'Pages/Activities.php'],
	 	['VBS', 'Pages/VBS.php'],
		['Sunday School', 'Pages/Sunday_school.php'],
		['Sister’s Corner', 'Pages/Sisters_corner.php'],
		['Youngster’s Corner', 'Pages/Youngsters_corner.php'],
	],
	['Doctrinal Statement', 'Pages/Doctrinal_Statement.php'],
	['Photo Gallery', 'Pages/Photo_Gallery.php'],
	
	['Other Links', null,null,
	 	['Musics', 'Pages/Music_Tracks.php'],
	    ['Suvisesha Dhwani', 'Pages/Suviseshadhwani.php'],
		['Useful links', 'Pages/Links.php'],
		['Downloads', 'Pages/downloads.php'],
		
	 ]
	
];

