// 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 SAUT', null, null,
	 	['Our Background', 'bk.htm'],
		['Vission & Mission', 'vission.htm'],
		['Administration', null, null,
			['Board of Trustees', 'Trustees.htm'],
			['Council Members', 'Council.htm'],
			//['Council Members', null, null, 
				//['s'],
				//['s'],
				//['s'],
				//['s'],
				//['s']// there must be no comma after the last element
			//],
			['Senate Members', 'Senate.htm'],
			['Staff Members', 'staff.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'
		//new
		
		// new
		['Alumni', 'alumni.htm'],
		['Contact Us', 'contact.htm'],
	],
	['Study at SAUT', null, null,
		['How to apply', 'apply.htm'],
		['Entry Requirement', 'entry.htm'],
		['Registration Information', 'reginfo.htm'],
		['Financial Information', 'financial.htm'],
		['Programmes/Courses', 'programs.htm'],
		['University Calender', 'calendar.htm'],
		['Downloads', 'downloads.htm'],
	],
	['SAUT Colleges', 'colleges.htm'],
	['Our Services', null,null,
		['University Library', 'lib.htm'],
		['ICT Services', 'ict.htm'],
		['University Hostels', 'hostel.htm'],
		['University Church', 'church.htm'],
		['University Dispensary', 'dispensary.htm'],
		['University Canteen', 'canteen.htm'],
		['University Radio', 'radio.htm'],
		['University e-Journal/News', 'tst.htm'],
	]
];

