// 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 = [
	['Hem', '/index.php'],
	
	['Om Kören', null, null,
	    ['Historia', '/historia.php'],
	    ['Dirigent', '/dirigent.php'],
	    ['Kontakt', '/kontakt.php'],
	    ['Bli Medlem', '/bli_medlem.php']
	],

	['Nyheter', 'http://nyheter.abbkoren.se/'],

	['Konserter', null, null,
	    ['Aktuella', '/konsert.php'],
	    ['Uppförda', '/konsert_uppforda.php'],
	    ['Recensioner', '/recensioner.php'],
	    ['Bilder', '/konsert_bilder.php'],
	],
	
	['Medlem (Inloggning)', '/login.php']
];


