// 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.php'],
	['DOWNLOAD&nbsp;', null, null,
		['Schema main-panel', 'downloads_main.php'],
		['Schema overhead-panel', 'downloads.php'],
		['Avonturen', 'avonturen.php'],
		['Vluchtplan maken', 'vluchtplan.php'],
	],
	['LIVE&nbsp;&nbsp;', '../camera.php'],
	['SOFTWARE', '../software.php'],
	['BREVET&nbsp;', '../vliegbrevetten.php'],
	['LINKS&nbsp;', '../links.php'],
	['CONTACT&nbsp;', '../contact.php'],
	['MEDIA', null, null,
		['Video', 'multimedia_movies.php'],
		['Muziek', 'muziek.php'],
		['Wallpaper', 'wallpapers.php'],
	],
	['FOTO&nbsp;&nbsp;', null, null,
		['Bouw main-panel', '../bouw-737sg-mainpanel.php'],
		['Bouw overhead-panel', '../bouw-737sg-overheadpanel.php'],
		['Impressie 737SG', '../impressie737sg.php'],
		['FSXperience', '../fsxperience.php'],
	]
];


