// 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.shtml'],
	
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
	
	['About Us', 'aboutus.shtml'],
	['Products', null, null,
		
			['&nbsp;Flutes &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>&raquo;</b>', null, null, 
			['&nbsp;Head Joints &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>&raquo;</b>', null, null, 			
				['&nbsp;Williams Head Joints', 'WillamsHeadJoint.shtml'],			
			],	
			
			['&nbsp;Eastman Flutes', 'Eastman.shtml'],
			['&nbsp;Amadeus Flutes', 'Amadeus.shtml'] // there must be no comma after the last element
	],
		['&nbsp;Piccolo &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>&raquo;</b>', null, null, 
				['&nbsp;Piccolo Head Joints', 'Piccolo.shtml'],
				['&nbsp;Dean Yang', 'deanyang.shtml'],
				['&nbsp;Global Piccolos by Burkart', 'globalpiccolosbyburkart.shtml'],
				
		],
		['&nbsp;Power Lung', 'PowerLung.shtml'],
		['&nbsp;Jewelry &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>&raquo;</b>', null, null, 
				['&nbsp;Bracelets', 'Bracelets.shtml'],
				['&nbsp;Necklaces', 'Necklaces.shtml'],
				['&nbsp;Earrings', 'Earrings.shtml'],
				['&nbsp;Book marks', 'Bookmarks.shtml'] // there must be no comma after the last element
		],
		
		['&nbsp;Music', 'music.shtml'],
		['&nbsp;Accessories ', 'accessories.shtml'],
		['&nbsp;Resale', 'resale.shtml'],
		['&nbsp;Resona by Burkart', 'resonabyburkart.shtml']
		
	],
	['Video Library', 'videoLibrary.shtml'],
		
		['Services', null, null,
		['&nbsp;Performance Clinics', 'Clinic.shtml'],
		['&nbsp;Instrument Trial Coaching', 'Coaching.shtml'],
		['&nbsp;Repair & Service', 'Repairservices.shtml'],
		['&nbsp;Dream a Little', 'dreamalittle.shtml']
		
	],
	
	['Other Links', 'otherLinks.shtml'],
	['Contact Us', 'contactUs.shtml']
];

