// 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.htm'],
	['Intro Video', 'Welcome.htm'],		
	['News', 'News.htm'],		
	['Training', null, null,
		['Summary', 'Training.htm'],
 	    ['Fitness', null, null,	
			['Conditioning', 'Total%20Body%20Conditioning.htm'],
			['Personal', 'Personal%20Training.htm']
		],
 	    ['Self Defence', null, null,			
			['Intensive', 'Intensive%20Training.htm'],
			['Corporate', 'Corporate%20Training.htm'],
			['Personal', 'Personal%20Training.htm'],
			['Adults', 'Adults%20Classes.htm'],
			['Juniors', 'Juniors%20Classes.htm'],			
			['Mini Kids', 'Mini%20Kids%20Classes.htm']
		]	
	],
	['Locations', 'Locations.htm'],	
	['Schedule', null, null,	
		['UK', 'Schedule%20UK.htm'],
 	    ['Indonesia', null, null,		
			['Bandung', 'Schedule%20Bandung.htm'],			
			['Jakarta', 'Schedule%20Jakarta.htm'],
			['Jambi', 'Schedule%20Jambi.htm'],
			['Kuningan', 'Schedule%20Kuningan.htm'],	
			['Lampung', 'Schedule%20Lampung.htm'],			
			['Palembang', 'Schedule%20Palembang.htm'],
			['Sekayu', 'Schedule%20Sekayu.htm'],
			['Semarang', 'Schedule%20Semarang.htm']	
		],
 	    ['Timor Leste', 'Schedule%20Timor%20Leste.htm']		
	],		
	['Benefits', 'Benefits.htm'],	
	['Methodology', 'Methodology.htm'],		
	['Photo Gallery', 'photos/index.php'],	
	['Video Gallery', 'videos/index.php'],			
	['Events', 'Events.htm']
];


