// 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://dylanrynhart.com/index.html' ],
		
		['Concerts', 'http://dylanrynhart.com/calendar.html' ],
		
		['Compositions', 'http://dylanrynhart.com/compositions.html'],
		
		['Recordings', 'http://dylanrynhart.com/recordings.html' ],
		
		['Design', 'http://dylanrynhart.com/design.html'],
		
		['Contact', 'http://dylanrynhart.com/contact.html' ]
		
		
	];

