// 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,
        ['Vision & Mission', 'vision.htm'],
		['Board of Governors', 'board.htm'],
		['Founder\'s Message', 'founder.htm'],
		['Chairman\'s Message', 'chairman.htm'],
		['Director\'s Message', 'director.htm'],
	],
	['Infrastructure', null, null,
		// this is how item scope settings are defined
		['Wifi Campus', 'Wifi-campus.htm'],
		// this is how multiple item scope settings are defined
		['Lecture Hall', 'Lecture-hall.htm'],
		['Library', 'Library-Infra.htm'],
		['Computer Lab', 'Computerlab.htm'],
		['Language Lab', 'Language-lab.htm'],
		['ERP', 'erp.htm'],
		['Sports Facility', 'Sports.htm'],
		['Cafeteria', 'cafeteria.htm'],
		['Accomodation', 'accomodation.htm'],
	],
	['Faculty', null, null,
		['Core Faculty', 'core.htm'],
		['Guest Speakers', 'guest.htm'],
		['Visiting Faculty', 'visiting-faculty.htm']
	],
	['Industry @ Lotus', null, null,
		['Corp. Advisory Committee', 'Corporate-Advisory-committee.htm'],
		['Industrial Visit', 'industrial-visit.htm'],
		['Industry Training', 'industry-training.htm'],
		['Final Placements', 'final-placements.htm'],
        ['Memberships', 'memberships.htm']
	],
	['Courses', null, null,
		['PGDM', 'pgdm.htm'],
		['MBA', 'mba.htm'],
		['BBA', 'bba.htm'],
		['B.Com', 'bcom.htm'],
	],
	['Life @ Lotus', null, null,
		['Student Activities', 'student-activities.htm'],
		['Sports Facility', 'Sports@lotus.htm'],
		['Mgmt Fest - Limartz', 'Limartz.htm'],
		['Adventure Tour', 'Adventure-tour.htm'],
		['Events', 'Events@lotus.htm'],
	], 
    ['Other Benefits', 'other.htm']
]; 

