/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/
var MENU_ITEMS = [
	['Home', null, null,
		['Home Page', '/index.php'],
		['Footy Tipping', '/tipping/tipping.php'],
		['Quizzes and Surveys', '/quiz/index.php'],
	],
	['News', null, null,
		['News Articles', '/news/index.php'],
		['Fixtures and Results', '/game/index.php?year=current'],
		['Media Watch','/mediawatch/index.php'],
		['The Book of Woosha', '/news/book_of_woosha.php'],
	],
	['Players', null, null,
		['Player Pages', '/players/index.php'],
		['Current Squad', null, null,
			['Career Statistics','/players/squad.php?career=all'],
			['Current Year','/players/squad.php?career=year']
		],
		['Past Players', '/players/index.php?l=p'],
		['Rowan Jones Medal (POTY)', null, null,
			['Current Status','/poty/index.php'],
			['Voting','/poty/voting.php'],
			['Previous Games','/poty/gamelist.php']
		],
	],
	['Games', null, null,
		['Current Fixtures', '/game/index.php?year=current'],
		['Historic Results', '/game/index.php', null],
		['Advanced Game Stats', '/game/statistics.php'],
	],
	['Statistics', null, null,
		['Quick Stats', '/statistics/index.php', null],
		['Advanced Game Stats', '/game/statistics.php'],
		['Advanced Player Stats', '/statistics/player.php'],
	],
	['Other', null, null,
		['Club History', '/news/inline.php?id=-3', null],
		['Honour Board', '/'],
		['Draft History', '/news/inline.php?id=-1']
	],
	['Links', null, null,
		['EFH Stuff - Buy it', '/shop.php', null],
		['The Soaring', 'http://www.thesoaring.com'],
		['West Coast Official Site', 'http://www.westcoasteagles.com.au'],
		['Other Links', '/news/news.php?id=1']
	],
	['Forum', '/forum/index.php'],
];


