// 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'],

	['About Us', null, null,
		// this is how item scope settings are defined
		['Introduction', '../about/index.htm'],
		// this is how multiple item scope settings are defined
		['Exco', '../contact/exco.htm'],
		['Group Leaders', '../contact/grpleaders.htm'],
		
	],

	['Activities', null, null,
		['Introduction', '../activities/index.htm'],
		['Running Routes', '../activities/index.htm'],
		
	],

      ['Event Calander', '../events/index.htm'],

	['Resources', null, null,
		['Articles', '../footloose/index.htm'],
		['Footloose', '../footloose/index.htm'],
		
	],

	['Gallery', null, null,
		['Events Photos','http://www.pacesetters.com.my/photoalbum'],
		['Results','../results.htm'], 
		
	],

	['Sponsors', null, null,
		['Promotions','../promotions.htm'            ],
		['Acknowledgement'], 
		
	],

	['Join Us', null, null,
		['Membership Application Form', '../resource/forms/appform.xls'],
		['Volunters'], 
		['Update Membership Data', '../resource/news/mbr_maint.htm'], 
		
	],

];


