// 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.sxg.com.au/', null],
	['Forum', null, null,
		['Forum Home','http://www.sxg.com.au/forum2/'],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['Search Forum', 'http://www.sxg.com.au/forum2/search.php'],
		['New Posts', 'http://www.sxg.com.au/forum2/search.php?search_id=newposts'],
		['Help', 'http://www.sxg.com.au/forum2/faq.php'],
		['Forum Users', 'http://www.sxg.com.au/forum2/memberlist.php'],
		['Forum Archive', 'http://archives.sxg.com.au/']
	],
	['Tournaments', null, null,
		// this is how item scope settings are defined
		['Current Tournament Events', 'http://www.sxg.com.au/index.php?ind=tournies'],
		// this is how multiple item scope settings are defined
		['Past Tournaments', 'http://www.sxg.com.au/index.php?ind=tournies&op=history'],
		['Rules / HDCPS', 'http://www.sxg.com.au/index.php?ind=tournies&op=rules#handicaps'],
		['Rankings', 'http://www.sxg.com.au/index.php?ind=tournies&op=rankings']
	],
	['AFL Tippers', null, null,
		['AFL Main Page', 'http://www.sxg.com.au/index.php?ind=afl'],
		['Leader Board', 'http://www.sxg.com.au/index.php?ind=afl&op=MembersBoard'],
		['My Tips', 'http://www.sxg.com.au/index.php?ind=afl&op=UserReport#tips'],
		['Rules & Registrations', 'http://www.sxg.com.au/index.php?ind=afl&op=UserRegister'],
		['View 2010 Draw', 'http://www.sxg.com.au/index.php?ind=afl&op=RoundList']
	],
	['Image Gallery', 'http://www.sxg.com.au/index.php?ind=gallery'],
	['Sundries', null, null,
		['Donations', 'http://www.sxg.com.au/index.php?pid=35'],
		['Game Characters', 'http://www.sxg.com.au/index.php?pid=16'],
		['Course Guide', 'http://www.sxg.com.au/index.php?pid=58'],
		['New Applications', 'http://www.sxg.com.au/index.php?pid=19'],
		['Rankings', 'http://www.sxg.com.au/index.php?ind=tournies&op=rankings'],
		['SO Wiki', 'http://en.wikipedia.org/wiki/Shot_Online']
	],
	['Guild Members', null, null,
		['TD Application', 'http://www.sxg.com.au/index.php?pid=60'],
		['Report Guild Match', 'http://www.sxg.com.au/index.php?ind=tournies&op=report'],
		['Unreported Match', 'http://www.sxg.com.au/index.php?ind=tournies&op=unreported'],
		['HDCPS & Rules', 'http://www.sxg.com.au/index.php?ind=tournies&op=rules#handicaps'],
		['Vote New Members', 'http://www.sxg.com.au/index.php?pid=48'],
		['Edit Profile', 'http://www.sxg.com.au/index.php?ind=tournies&op=editprofile']
	],
	['* Restricted *', null, null,
		['Create Tournament', 'http://www.sxg.com.au/index.php?ind=tournies&op=directors&action=create'],
		['Manage Tournament', 'http://www.sxg.com.au/index.php?ind=tournies&op=directors&action=manage'],
		['-------------', '#'],
		['Edit Members', 'http://www.sxg.com.au/index.php?ind=tournies&op=directors&action=memberlevel'],
		['Manage Donations', 'http://www.sxg.com.au/index.php?pid=36'],
		['Subscribers', 'http://www.sxg.com.au/index.php?pid=53']
	]
];

