// 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', 'http://www.barrowcentralwhs.org.uk/index.htm'],
	['Membership', null, null,
		['Join the Club', 'http://www.barrowcentralwhs.org.uk/membership/membership.htm'],
		['Club Clothing', 'http://www.barrowcentralwhs.org.uk/membership/clothing.htm']
	],
	['Notices', null, null,
		['Club Dinner 2010', 'http://www.barrowcentralwhs.org.uk/notices/dinner.htm'],
		['E-mail Info / Offers', 'http://www.barrowcentralwhs.org.uk/notices/notices.htm']
	],
	['Events/Results', null, null,
		['Events Calendar', 'http://www.barrowcentralwhs.org.uk/events/2010/events.htm'],
		['Results 2010', null, null,
			['Club events', 'http://www.barrowcentralwhs.org.uk/results/2010/results_2010.htm'],
			['Open events', 'http://www.barrowcentralwhs.org.uk/results/2010/opens/open_results_2010.htm'],
			['SPOCO events', 'http://www.barrowcentralwhs.org.uk/results/2010/spoco/spoco_results_2010.htm']
		],
		['Results 2009', null, null,
			['Club events', 'http://www.barrowcentralwhs.org.uk/results/2009/results_2009.htm'],
			['Open events', 'http://www.barrowcentralwhs.org.uk/results/2009/opens/open_results_2009.htm'],
			['SPOCO events', 'http://www.barrowcentralwhs.org.uk/results/2009/spoco/spoco_results_2009.htm']		
		],
		['Results 2008', null, null,
			['Club events',              'http://www.barrowcentralwhs.org.uk/results/2008/results_2008.htm'],
			['Open events',              'http://www.barrowcentralwhs.org.uk/results/2008/opens/open_results_2008.htm'],
			['SPOCO events',             'http://www.barrowcentralwhs.org.uk/results/2008/spoco/spoco_results_2008.htm'],
			['Sportive/Audax events',    'http://www.barrowcentralwhs.org.uk/results/2008/sportifs/sportif_results_2008.htm'],
			['Rudy Project events',      'http://www.barrowcentralwhs.org.uk/results/2008/rudyproject/rudyproject_results_2008.htm'],
			['Prize Winners',            'http://www.barrowcentralwhs.org.uk/results/2008/prizewinners/prizewinners.htm'],
			['Best Times - Club events', 'http://www.barrowcentralwhs.org.uk/results/2008/besttimes/besttimes.htm']
		],
		['Results 2007', null, null,
			['Club events', 'http://www.barrowcentralwhs.org.uk/results/2007/results_2007.htm']
		],
		['Results 2006', null, null,
			['Club events', 'http://www.barrowcentralwhs.org.uk/results/2006/results_2006.htm']
		],
		['Results 2005', null, null,
			['Club events', 'http://www.barrowcentralwhs.org.uk/results/2005/results_2005.htm']
		],
		['Course details', null, null,
			['Circuit of Cartmel',  'http://www.barrowcentralwhs.org.uk/courses/other/cartmel/circcartmel.htm'],
			['Circuit of Coniston', 'http://www.barrowcentralwhs.org.uk/courses/other/circ_coniston/circ_coniston.htm'],
			['Coast Road 10',       'http://www.barrowcentralwhs.org.uk/courses/10s/coastroad10/coastroad10.htm'],
			['Haverthwaite 10',     'http://www.barrowcentralwhs.org.uk/courses/10s/haverthwaite10/haverthwaite10.htm'],
			['Haverthwaite 25',     'http://www.barrowcentralwhs.org.uk/courses/25s/haverthwaite/haverthwaite25.htm'],
			['Levens 10 (L1015)',   'http://www.barrowcentralwhs.org.uk/courses/10s/levens/levens_L1015.htm'],
			['Torver SPOCO (L201)', 'http://www.barrowcentralwhs.org.uk/courses/other/spoco_torver/spoco_torver.htm']
		],
		['Sportives', null, null,
			['3 Counties Challenge',   'http://www.3countieschallenge.com'],
			['Cumberland Challenge',   'http://www.thecumberlandchallenge.co.uk'],
			['Fred Whitton Challenge', 'http://www.fredwhittonchallenge.org.uk'],
			['Lakeland Loop',          'http://www.epicevents.org/index.php?jssCart=f8708368843cadc318efa7b75d9c4de7'],
			['Northern Rock Cyclone',  'http://www.northernrockcyclone.co.uk/CycloneChallenge.asp'],
			['White Rose Classic',     'http://www.whiteroseclassic.co.uk/'],
			['Christmas Cracker',      'http://www.epicevents.org/section.php?xSec=17']
		],
	],
	['Gallery', null, null,
		['2010 gallery', 'http://www.barrowcentralwhs.org.uk/gallery/2010/2010pics.htm'],
		['2009 gallery', 'http://www.barrowcentralwhs.org.uk/gallery/2009/2009pics.htm'],
		['2008 gallery', 'http://www.barrowcentralwhs.org.uk/gallery/2008/2008pics.htm']
	],
	['Contacts', 'http://www.barrowcentralwhs.org.uk/contacts/contacts.htm'],
	['Links', 'http://www.barrowcentralwhs.org.uk/links/links.htm']
];

