// 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', null],
	['Teams', null, null,
		['SBFC Red', '/teams/red/main.html', null],
		['SBFC Blue', '/teams/blue/main.html', null],
		['SBFC Over 30', '/teams/o30/main.html', null],
		['SBFC Over 40', '/teams/o40/main.html', null]
	],
	['Schedules', '/pages/sched.html', null],
	['Statistics', '/pages/stats.html', null],
	['Standings', '/pages/stand.html', null], 
	['Shop', null, null,
		['Byki Online Shop', 'http://www.cafepress.com/starebykifc',   {'tw':'_blank'}],
		['Other Byki Items', '/pages/store.html',  null],
		['Eurosport', 'http://www.jdoqocy.com/click-3452156-10398245',   {'tw':'_blank'}]
	],
	['Fun', null, null,
		['Byki Bits & Pieces', '/pages/bits.html', null],
		['Byki Bouncings', '/pages/bb.pdf',  {'tw':'_blank'}],
		['History', '/pages/history/main.html', null]
	],
	['Contact Us', 'mailto:mail@starebykifc.org', null], 
];

