// 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_ITEMS2 = [
	['home', 'index.html',null,
		['race feedback', 'feedback.html'],
		['training', 'training.html']
	],
	['event details', 'eventDetails.html', null,
		// this is how item scope settings are defined
		['the course', 'thecourse.html'],
		// this is how multiple item scope settings are defined
		['parking', 'parking.html'],
		['information', 'information.html'],
		['contact details', 'contactdetails.html']
	],
	['enter online', ['https://www.entrycentral.com/index.php?raceID=100257', '_blank', ''],null],
	
	
	['results', null,null,
	 	['2008','results2008.html'],
		['2009','results2009.html'],
		['2010','results2010.html']
	 ],
	['photo gallery', null,null,
	 	['2008','photogallery2008.html'],
		['2009','photogallery2009.html'],
		['2010','photogallery2010.html']
	 ],
	['sponsors', null,null,
	 	['Dunblane Hydro','dunblaneHydro.html'],
		['The Running Co.','theRunningCompany.html'],
		['Highland Spring','highlandSpring.html']
	 ]
];

