// 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.stoneycreekwarriors.com/site', null],
	['Team',null,null,
		['Roster','http://stoneycreek.stats.pointstreak.com/templatepreview/teamroster.html?teamid=88934&seasonid=4564'],
		['Staff','http://www.stoneycreekwarriors.com/site/node/91'],
		['Player Statistics','http://stoneycreek.stats.pointstreak.com/templatepreview/teamplayerstats.html?1242791585'],
		['Standings','http://stoneycreek.stats.pointstreak.com/templatepreview/standings.html?leagueid=668&seasonid=4564'],
		['Recruitment','http://www.stoneycreekwarriors.com/site/node/76'] 
	],
	['Sales',null,null,
		['Tickets','http://www.stoneycreekwarriors.com/site/node/50'],
		['Merchandise','http://www.stoneycreekwarriors.com/site/node/89'],
		['Camps','http://www.stoneycreekwarriors.com/site/node/90']
	],
	['Schedule', null, null, 
		['Home','http://www.stoneycreekwarriors.com/site/node/44'],
		['Away','http://www.stoneycreekwarriors.com/site/node/45'],
		['Playoffs','http://www.stoneycreekwarriors.com/site/node/54']
	],
	['Sponsors','/site/node/52'],
	['Photos',null,null,
		['Players','http://www.stoneycreekwarriors.com/site/image/tid/2'],
		['Volunteers','http://www.stoneycreekwarriors.com/site/image/tid/4'],
		['Operations','http://www.stoneycreekwarriors.com/site/image/tid/3'],
		['Executive','http://www.stoneycreekwarriors.com/site/image/tid/5'],
		['Game Pictures','http://www.stoneycreekwarriors.com/site/image/tid/6']
	],
	['News',null,null, 
		['Event Calendar','http://www.stoneycreekwarriors.com/site/date_browser'],
		['Community News','http://www.stoneycreekwarriors.com/site/node/92'],
		['Bulletin Board','http://www.stoneycreekwarriors.com/site/node/93']
	],
	['Contact',null,null,
		['Main Office','http://www.stoneycreekwarriors.com/site/node/53'],
		['Volunteers','http://www.stoneycreekwarriors.com/site/node/49']
	]
];

