// 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 bMENU_ITEMS = 
	[
		
		['Fuzzy Logic', 'http://dylanrynhart.com/fuzzylogicensemble.html' ],
		
		['Components', 'http://components.ie' ],
		
		['Projects', null, null,
			
			['FL Small-tet', 'http://dylanrynhart.com/flsmalltet.html' ],
			['History Revision', 'http://dylanrynhart.com/historyrevision.html' ],
			['Spin Cycle', 'http://dylanrynhart.com/spin.html', ],
			['Mouthpiece', 'http://dylanrynhart.com/mouthpiece.html', ],	
				
			['Numb Itch twitch', 'http://dylanrynhart.com/bridgewood.html' ],	
			['Kitchey Schlock', 'http://dylanrynhart.com/rise.html' ],
		
			['Nun More Deadly', 'http://dylanrynhart.com/nun.html' ],
			['Jazz trio', 'http://dylanrynhart.com/jazz.html' ]
			
		],
		
		['Downloads', 'http://dylanrynhart.com/downloads.html', null,
			['Recordings', 'http://dylanrynhart.com/mp3s.html' ],
			['Scores', 'http://dylanrynhart.com/scores.html'],
			['Photos', 'http://dylanrynhart.com/photos.html'],
			['Video', 'http://dylanrynhart.com/videos.html']
		],
		
		['Press', null, null,
			['Biography', 'http://dylanrynhart.com/biography.html'],
			['Reviews', 'http://dylanrynhart.com/reviews.html'],
			['Awards', 'http://dylanrynhart.com/awards.html'],
			['Photos', 'http://dylanrynhart.com/photos.html'],
			['Press Releases', 'http://dylanrynhart.com/press.html']
		],
		
		['Classes', 'http://dylanrynhart.com/education.html', null,
			['Log-In', 'http://dylanrynhart.com/log-in.html'],
			['Sign-up', 'http://dylanrynhart.com/signup.html']
		],
	
		
		
	];

