// 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', 'About.html'],		
		['Mission And Vision', 'MissionVision.html'],
		['Contact Us', 'ContactUs.html'],
		['Location Map', 'LocationMap.html']
	],
	['Admission', null, null,
		['Criteria', 'Criteria.html'],
		['Fees', 'Fees.html'],
		['Facilities', 'Facilities.html'],
		['Application Form', 'Application.html']		
	],
	['Students', null, null,
		['Prefects', 'Prefects.html'],
		['Calendar', 'Calendar.html']		
	],
	['Faculty', null, null,
				['Faculty Profile', 'StaffProfile.html'],				
				
	],
	['Gallery', null, null,
			['Annual Day 2009', 'AnnualDay.html'],
			['Events Gallery', 'EventsGallery.html']
			
	],	
];

