// 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 = [
	['Saxophone ', null, null,
		// this is how item scope settings are defined
		['The Jazz Method for Saxophone Bb', '../publications/sax/jazzmethod/saxbb.html', {'tw':'_self'}],
		['The Jazz Method for Saxophone Eb', '../publications/sax/jazzmethod/saxeb.html', {'tw':'_self'}],
		['Developing Jazz Technique for Saxophone Bb (Eng, De, Fr)', '../publications/sax/developing/devsaxbb.html', {'tw':'_self'}],
		['Developing Jazz Technique for Saxophone Eb (Eng, De, Fr)', '../publications/sax/developing/devsaxeb.html', {'tw':'_self'}],
		['Die Jazzmethode fur Saxophon 1 Bb', 'http://www.schott-music.com/shop/1/show,38661.html', {'tw':'_blank'}],
		['Die Jazzmethode fur Saxophon 1 Eb', 'http://www.schott-music.com/shop/1/show,38660.html', {'tw':'_blank'}],
		['Die Jazzmethode fur Saxophon 2 Bb', 'http://www.schott-music.com/shop/1/show,100533.html', {'tw':'_blank'}],
		['Die Jazzmethode fur Saxophon 2 Eb', 'http://www.schott-music.com/shop/1/show,100532.html', {'tw':'_blank'}],
		['La Methode de Jazz pour Saxophone Bb', 'http://www.schott-music.com/shop/1/show,173470.html', {'tw':'_blank'}],
		['La Methode de Jazz pour Saxophone Eb', 'http://www.schott-music.com/shop/1/show,173469.html', {'tw':'_blank'}],
	],
	['Clarinet', null, null,
		['The Jazz Method for Clarinet ', '../publications/clarinet/jazzmethod/clt.html', {'tw':'_self'}],
		['Developing Jazz Technique for Clarinet (Eng, De, Fr)', '../publications/clarinet/developing/devclt.html', {'tw':'_self'}],
		['Die Jazzmethode fur Klarinette', 'http://www.schott-music.com/shop/1/show,39367.html', {'tw':'_blank'}],		
	],
	['Flute', null, null,
		['The Jazz Method for Flute ', '../publications/flute/jazzmethod/flt.html', {'tw':'_self'}],
		['Developing Jazz Technique for Flute (Eng, De, Fr)', '../publications/flute/developing/devflt.html', {'tw':'_self'}],
		['Die Jazzmethode fur Flote', 'http://www.schott-music.com/shop/1/show,39468.html', {'tw':'_blank'}],
	],
	['Trumpet', null, null,
	['The Jazz Method for Trumpet ', '../publications/trumpet/jazzmethod/trp.html', {'tw':'_self'}],
	['Die Jazzmethode fur Trompete', 'http://www.schott-music.com/shop/1/show,39579.html', {'tw':'_blank'}],		
	]
];

