// 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', 'home.php', null],			  
	['News', null, null,
		['Search', 'home.php?title=search', null],
		['All news', 'home.php?title=news', null],
		['MotoGP', 'home.php?title=news&category=MotoGP', null],
		['250', 'home.php?title=news&category=250', null, null],
		['125', 'home.php?title=news&category=125', null, null],
		['World Superbike', 'home.php?title=news&category=wsbk', null],
		['AMA', 'home.php?title=news&category=ama', null],
		['Features', 'home.php?title=news&category=feature', null],
		['Lorenzoland', 'home.php?title=news&category=lorenzoland', null],
		['Sprocket', 'http://www.moto-sprocket-gp.co.uk', {'tw':'_blank'}]

	],
	['Interact', null, null,
		['Caption Competition', 'home.php?title=caption', null],
		['Comments', 'home.php?title=comments', null],
		['Polls', 'home.php?title=polls', null],
		['Fantasy', 'http://www.motogpnews.com/home.php?title=fantasy&thepage=fantasyhome', null],
		['Forum', 'home.php?title=forum', null]
	],
	['Membership', null, null,
		['Register', 'home.php?title=register', null],
		['Elite Member','home.php?title=elite' , null],
		['Sign in', 'home.php?title=signin', null]
	],
	['Merchandise', null, null,
		['T-Shirt', 'home.php?title=tshirt', null]
	],
	['Sponsors', null, null,
		['Become a sponsor', 'home.php?title=sponsor', null],
		['Sponsors homepage', 'home.php?title=sponsorhome', null]
	],
	['Sign in', 'home.php?title=signin', null],
	['Donate', 'home.php?title=donation', null]


];

