// 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/indoor/2011_12/main.html', null],
		['SBFC Blue', '/teams/blue/indoor/2011_12/main.html', null],
		['SBFC Over 40', '/teams/o40/indoor/2011_12/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]
	],
	['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], 
];


