// 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 Us', null, null,
		['Board of Governors', 'board.htm'],
		['Academic Council', 'academic.htm'],
		['Founder\'s Message', 'founder.htm'],
		['Chairman\'s Message', 'chairman.htm'],
		['Director\'s Message', 'director.htm'],
		['Vision & Mission', 'vision.htm']
	],
	['Facilities', null, null,
		// this is how item scope settings are defined
		['Campus', 'facilities.htm'],
		// this is how multiple item scope settings are defined
		['Lecture Hall', '?script=campus#lecture'],
		['Library', '?script=campus#Library'],
		['IT', '?script=campus#IT'],
		['Cafeteria', '?script=campus#cafeteria'],
		['Accomodation', '?script=campus#accomodation'],
	],
	['Faculty', null, null,
		['Core Faculty', 'core.htm'],
		['Guest Faculty', 'guest.htm']
	],
	['Gallery', null, null,
		['Campus ', 'campusG.htm'],
		['Library', 'library.htm'],
		['Lecture Hall', 'lecture.htm'],
		['Computer Lab', 'computer.htm'],
                ['College Gallery', 'college.htm']
	],
	['Courses', null, null,
		['PGDM', 'pgdm.htm'],
		['Admission', 'admission.htm'],
		['Fee Structure', 'fee.htm'],
		['Download Prospectus', 'data/Prospectus_4.zip'],
		['Download application Form ', 'data/form-2008_3.pdf']
	],
	['Events & News', 'kuch.htm'], 
        ['Contact', 'contact.htm']
]; 
