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

