// 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.htm', {'tt':'Welkomst Pagina', 'sb':'status'}],
	['Stichting MIES', null, null,
		// this is how item scope settings are defined
		['Over Mies', 'main/mies.htm', {'tw':'mid', 'tt':'Over Mies', 'sb':'Over MIES'}],
		// this is how multiple item scope settings are defined
		//['Paarden', 'main/paarden.htm', {'tw':'mid', 'tt':'Paarden', 'sb':'Paarden'}],
		['Zaterdagopvang', 'main/koeien.htm', {'tw':'mid', 'tt':'Zaterdagopvang', 'sb':'Zaterdagopvang'}],
		['Kinderboerderij', 'main/kinderboerderij.htm', {'tw':'mid', 'tt':'Kinderboerderij', 'sb':'Kinderboerderij'}],
		['Kalender 2012', 'main/uitstapjes.htm', {'tw':'mid', 'tt':'Kalender 2012', 'sb':'Kalender 2012'}],

	],
	['Begeleiders', 'main/begeleiders.htm', {'tw':'mid', 'tt':'Begeleiders', 'sb':'Bgeleiders'}],
	['Informatie', null, null,
		// this is how item scope settings are defined
		['PGB', 'main/pgb.htm', {'tw':'mid', 'tt':'PGB', 'sb':'PGB'}],
		// this is how multiple item scope settings are defined
		//['Aanmelden', 'main/aanmelden.htm', {'tw':'mid', 'tt':'Aanmelden', 'sb':'Aanmelden'}],
		['Fotos', 'main/Fotoalbums_mies.html', {'tw':'mid', 'tt':'Fotos', 'sb':'Fotos'}],
		['Sponsoren', 'main/spon.htm', {'tw':'mid', 'tt':'Sponsoren', 'sb':'Sponsoren'}],
		

	//],
	//['Nieuws', null, null,
		// this is how item scope settings are defined
		//['Nieuwtjes', 'main/nieuwtjes.html', {'tw':'mid', 'tt':'Nieuwtjes', 'sb':'Nieuwtjes'}],
		// this is how multiple item scope settings are defined
		['Vakantie', 'main/vakantie.htm', {'tw':'mid', 'tt':'op vakantie', 'sb':'op vakantie'}],

	],
	['Inschrijfformulier', 'main/vacatur.php', {'tw':'mid', 'tt':'Inschrijfformulier', 'sb':'Inschrijfformulier'}],
	
	['Wonen', null, null,
		// this is how item scope settings are defined
	['Woongroep', 'main/woonvoorziening2.php', {'tw':'mid', 'tt':'Woongroep', 'sb':'Woongroep'}],
	['Proefwonen', 'main/proefwonen.htm', {'tw':'mid', 'tt':'Proefwonen', 'sb':'Proefwonen'}],
	],
	
	['Contact', 'main/vooru.htm', {'tw':'mid', 'tt':'Contact', 'sb':'Test Status Bar Message'}]
];


