// 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','about_us.html'],
	['>> Infrastructure','infrastructure.html'],
	['>> Facilities','facilities.html'],
	['>> Departments', null, null,
		['Surgical','surgical.html'],
		['Medical Critical Care','medical_care.html'],
		['Orthopaedic','orthopeadic.html'],
		['Gynaecology','gynaecology.html'],
		['Pathology','pathology.html'],
		['Paediatric','paeditric.html'],
		['Neurology','nurology.html'],
		['Nephrology','nephrology.html'],
		['Trauma Centre','trauma.html'],
		['Cardiac Surgery','cardiac.html'],
		['Urology','urology.html'],
		['Skin','skin.html'],
		['Psychiatric','psychiatric.html'],
	],
	['>> Services','services.html'],
	['>> Capsule Endoscopy','capsuale_endoscopy.html'],

];
