// 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', 'http://www.fuzzylogicensemble.com'],
	
		['About', null,
			['Personnel', 'personnel.html' ],
			['Projects', 'projects.html' ],
			['Repertoire', 'repertoire.html'],
			['Concerts', 'concerts.html'],
			['Reviews', 'reviews.html'],
			['News', 'news.html']
		],
		
		['Events', 'calendar.html'],
		
		['Discography', 'discography.html' ],
		
		['Downloads', null, null,
			['Audio', 'audio.html'],
			['Video', 'video.html'],
			['Photo', 'photo.html'],
			['Scores', 'scores.html']
		],
		
		
		['Press', null,
			['Info', 'pressinfo.html' ],
			['Biographys', 'biog.html'],
			['Reviews', 'pressreviews.html'],
			['Photos', 'pressphotos.html'],
			['Discography', 'pressdiscography.html'],
			['Press Pack', 'presspack.zip']
		],
		
		['Contact', 'contact.html' ]
		
		
	];
