// 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.htm', 
		
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		
		
	],
	
	['About Us',  'aboutus.htm', null, 
		['JHPS Vision', 'vision.html',null,],
		['JHPS Mission','mission.html',null, ],
		['ISO 9001:2008','iso.html',null, ],
		['J H E S','jhes.html',null],
		['School Management','smgt.html', null, ],
		['Staff','staff.htm',null, ]
		
	],
	['Archives', null, null,
		['Events','functions.htm',null],
		['Performance',null, 'performance.html'],
		['CBSE Results','cbse_results.htm',null]
		
	],
	['Admissions', 'lkg.htm', null,
		['Admission Policy',null, '../admn/policy.html'],
		['Procedure', 'admnprocedure.htm',null],
		['Syllabus', 'admsyllabus.htm',null]

		
		
		
	],
	
	['Alumni', null, null,
		['Registration','alumniday.htm', null],
		['Batch','batch.htm',null],
		['Committee','alcommittee.htm',null],
		['Alumni Day','alumniday.htm',null, ]
		
	],
	['Contact','contact.html'],
	['Login',null, 'login.html']
	
];

