// 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?page=1'],
	['Effici&euml;ntie in zorgplanning', 'index.php?page=2'],
	['AWBZ Zorgregistratie', null, null,
		['Wat is AZR?', 'index.php?page=3'],
		['De AZR Module', 'index.php?page=5'] 
	],
	['AWBZ, PGB en Wmo', null, null,
		['AWBZ en/of PGB', 'index.php?page=7'],
		['PGB en Particulier', 'index.php?page=8'],
		['Wmo', 'index.php?page=9']
	],
	['Wat doet het allemaal?', null, null,
		['Functionaliteiten', 'index.php?page=11'],
		['Planning en Matching', 'index.php?page=12'],
		['Cli&euml;ntenadministratie', 'index.php?page=27'],
		['Automatische notificaties', 'index.php?page=13'],
		['Beveiliging en Wpb', 'index.php?page=26'],
		['Barcode scanner', 'index.php?page=14'],
		['AZR Module', 'index.php?page=15']
	],
	['Voor wie is het?', 'index.php?page=16'],
	['Hoe ziet het eruit?', 'index.php?page=17'],
	['Voordelen', 'index.php?page=29'],
	['Demo aanvraag', 'index.php?page=18'],
	['Nieuws', null, null,
		['Aanmelden nieuwsbrief', 'index.php?page=19'],
		['Laatste nieuws', 'index.php?page=20'],
	],
	['Zoek contact', 'index.php?page=22'],
	['Referenties en partners', 'index.php?page=23'],
	['Aanmelden presentatie', 'index.php?page=24'],
	['Vacatures', 'index.php?page=25']
];


