// 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 = [

	['主頁', 'index.html'],

	['本會宗旨', 'original.html'],

	['新聞稿', null, null,
		['2011北區豐盛人生健樂長跑比賽', 'PressRelease.html']],
			
	['活動', null, null,
		['2011北區豐盛人生健樂長跑比賽', null,null,
			['2011北區豐盛人生健樂長跑比賽成績公佈', '2011Result.html'],
			['2011北區豐盛人生健樂長跑比賽相片', '2011PhotoDownload.html']],

		['2010北區豐盛人生健樂長跑比賽', null, null,
			['2010北區豐盛人生健樂長跑比賽成績公佈', 'NDRun2010.html'],
			['2010北區豐盛人生健樂長跑比賽片段', 'NDRun2010_Capture.html']],
	],
	['聯絡處', 'contact.html']
];


