// 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', null],
	['About Us', null, null,
		['Profile', '../aboutus/profile.htm', null],			
		['Founder', '../aboutus/founder.htm', null],
		['Vision & Mission', '../aboutus/vision.htm', null],
		['Administration', '../aboutus/administration.htm', null],	
		['Disclosure','../aboutus/disclosure.doc',null],
	],
	['Courses', null, null,
		['UG Courses', '../courses/ugcourses.htm', null],
		['PG Courses', '../courses/pgcourses.htm', null],
		['PG Diploma Courses', '../courses/pgdiploma.htm', null],
		['Ph.D.', '../courses/phd.htm', null],
		['Certificate Courses', '../courses/certificate.htm', null],
		['Value Added Courses', '../courses/valueadded.htm', null],

	],
	['Departments', '../departments/departments.htm', null],
	['Calender Of Events', '../calender/calender.htm', null],
	['Campus', null, null,
		['Infrastructure', '../campus/infrastructure.htm', null],
		['Library', '../campus/library.htm', null],
		['Sports Facility', '../campus/sports.htm', null],
		['Hostel Facility', '../campus/hostel.htm', null],
		['Bio Science Lab', '../campus/bio-science-lab.htm', null],
		['Wifi Internet', '../campus/wifi.htm', null],		
	],
	['Associations', '../associations/associations.htm', null],
	['Special Features', '../special_featurs/special_fetures.htm', null],
	['Admissions', null, null,
		['U.G Courses', '../admissions/ugcourses.htm', null],
		['P.G Courses', '../admissions/pgcourses.htm', null],
	],
	['Contact Us', null, null,
		['Route map', '../contactus/roadmap.htm', null],
		['Bus numbers', '../contactus/busnumbers.htm', null],
		['Contact Address', '../contactus/contactus.htm', null],
	],
	
];

