// 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.html', null,],
	['About Us', '../bg.html', null,
		// this is how item scope settings are defined
		['Objectives', '../objective.html', null,],
		// this is how multiple item scope settings are defined
		['Priorities', '../priorities.html', null,],
		['Area of Studies', '../area.html'],
	],
	['Affilitaion', '../affil.html', null,
	 	['Institutional Affiliation', '../institution-affil.html'],
		['Guidelines for Foreign Researchers', '../guide.html'],
		['Affiliated Foreign Scholars', '../scholars.html'],
	
	],
	['Human Resource', null, null,
	 	['Academic Staffs', '../hr.html', null,],
		['Administrative Staffs', '../admin-staff.html', null,],
	 ],
	
	['Research', '../Research.html', null,
	 ['Research projects', '../research-pub.html' ],
	 ],
	
	['Publication', null, null,
		['Journals', '../pub.html', null,],
		 ['Publication', '../books-n-reports.html', null,],

	 ],
	
	['News and Events', null, null,
	 ['News' , '../news.html', null,],
	 ['Upcoming Events', '../events.html',null],
	 ['Programs' , '../programs.html', null,]
	 ],
	['Contact', '../contact.html']
];
