// 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 = [
	['關於我們', null, null,
		['目的', '../aboutolc/objectives.asp', null],
		['職員', '../aboutolc/people.asp', null],
		['位置', '../aboutolc/location.asp', null],		
		['開放時間', '../aboutolc/openinghours.asp', null],
		['標誌', '../aboutolc/logo.asp', null],		
		//['模擬導賞', '../virtualtour.sp', null],
		['鳴謝', '../aboutolc/Acknowledgement.asp', null],
		['聯絡我們', '../aboutolc/contact.asp', null],
	],
		// there must be no comma after the last element
		// 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'

	['認可資格', null, null,
		// this is how item scope settings are defined
		['指定培訓中心', '../accreditation/trainingcentre.asp', null],
		// this is how multiple item scope settings are defined
		['ISO9001 品質管理體系認證', '../accreditation/iso.asp', null]
		//['ISO9001 certification', null, null,
			//['ISO certification and activity', null, null],		
			//['Charges', null, null],		
			//['Customer evaluations and feedback', null, null]
		//],
	],
	['服務','../services/services.asp'],
		//['Workshop and symposium organization', '../services/workshop.asp'],
		//['Self-learning and evaluation facilities', '../services/selflearning.asp'],
		//['Online conference services', '../services/conference.asp'],
		//['Live relay of operation demonstrations', '../services/relay.asp'],
		//['CAOS training and practice', '../services/caos.asp'],
		//['Online booking facilities', '../services/booking.asp']
	//],

	['設備', null, null,
		['引言', '../facilities/fac_intro.asp'],
		['平面圖', '../facilities/fac_floor.asp'],
		['醫學技術訓練室', '../facilities/fac_bioskill.asp'],
		['研討室', '../facilities/fac_seminar.asp'],
		['電腦輔助骨科手術及應用中心', '../facilities/fac_CAOS.asp'],
		['圖書室', '../facilities/fac_library.asp'],
		['接待處及辦公室', '../facilities/fac_reception.asp'],
//		['Preparation Room', '../facilities/fac_preparation.asp'],		
		['視聽控制室', '../facilities/fac_AVControl.asp'],
		['視聽製作實驗室', '../facilities/fac_AVLab.asp'],
		['環保科技', '../facilities/fac_LED.asp'],
//		['Instruction to access', '../facilities/fac_access.asp'],
//		['Venue Booking', '../facilities/fac_vb.asp'],
	],
	['課程', '../events/index.asp'],
	['教育資源', null, null,
        ['活動記錄', '../resources/res_proceedings.asp'],
        ['影片資料', '../resources/res_video.asp'],
//		['Seminar', '../resources/res_seminar.asp'],
//		['研究會議', '../resources/res_research.asp']
	],
	['會員', null, null,
		['會員計劃', '../membership/membership_introduction.asp'],	
		//['簡訊', '../newsletter/newsletter.asp'],
		//['訂閱簡訊', '../newsletter/newsletter_sub.asp'],
	],
	['進修', null, null,
		['創傷骨科臨床進修計劃', '../programs/program_fellowship.asp'],
		//['骨科手術導航系統工作坊', '../programs/program_navigation.asp'],//
//		['骨科專業網庫', 'http://www.ortho.hyperguides.com/', {'tw':'_blank'}],		
		//['Community', '../programs/program_community.asp'],//
		//['Teaching and training', '../programs/program_training.asp'],//
		//['Applied research program', '../programs/program_research.asp']//
	],
	['報告', null, null,
		['活動回顧', '../reports/reports_highlights.asp'],
		['統計', '../reports/reports_statistics.asp']
	],
	['相片集', '../photos/photos.asp'],
	
];

