// 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', {'tw':'', 'tt':'Welkomst Pagina', 'sb':'status'}],
	['Producten', 'producten.htm', {'tw':'', 'tt':'Ontstaansgeschiedenis', 'sb':''}],
	
	//['Over Ons', null, null,
		// this is how item scope settings are defined
		//['Ontstaan', 'over_ons.htm', {'tw':'mid', 'tt':'Ontstaansgeschiedenis', 'sb':''}],
		// this is how multiple item scope settings are defined
		//['Service', 'service.htm', {'tw':'mid', 'tt':'Winkelsurveillance', 'sb':'Welkom bij Ctrl Base'}],
		//['Levering', 'index_1.html', {'tw':'mid', 'tt':'Horecabeveiliging', 'sb':'Welkom bij Ctrl Base'}],
		//['Verzekeren', 'index_1.html', {'tw':'mid', 'tt':'Hotelbeveiliging', 'sb':'Welkom bij Ctrl Base'}],
		//['Handleiding type E1', 'index_1.html', {'tw':'mid', 'tt':'Hotelbeveiliging', 'sb':'Welkom bij Ctrl Base'}],
	//],
	['Merken', 'merken.htm', {'tw':'', 'tt':'Merken', 'sb':'Merken'}],
	
	['Beurzen', 'beurzen.htm', {'tw':'', 'tt':'Beurzen', 'sb':'Beurzen'}],
	
	['Nieuws', 'nieuws.htm', {'tw':'', 'tt':'Nieuws', 'sb':'Nieuws'}],
	
	['Media', 'media1.html', {'tw':'', 'tt':'Media', 'sb':'Media'}],
	
	['Downloads', 'download.htm', {'tw':'', 'tt':'Downloads', 'sb':'Downloads'}],
	
	['Contact', 'contact.htm', {'tw':'', 'tt':'Contact', 'sb':'Contact'}]
];

