// 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 = [
	['AKTUALNOŚCI', 'dokumenty/str04.html',{'tw':'text'},
                        ['Archiwum','dokumenty/str10.html',{'tw':'text'}],
                        ['Najbliższe koncerty','dokumenty/str11.html',{'tw':'text'}],
                        ['Komunikaty','dokumenty/str12.html',{'tw':'text'}],
	],
	['HISTORIA', null, null,
			['Historia','dokumenty/str00.html',{'tw':'text'}],
			['Koncerty','dokumenty/str05.html',{'tw':'text'}],

		// 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'
		
	],
	['SKŁAD CHÓRU', null,null,
	 	['Dyrygent', 'dokumenty/str07.html',{'tw':'text'}],
                    	['Aktualny skład chóru', 'dokumenty/str01.html',{'tw':'text'}],
            		['Śpiewali z nami', 'dokumenty/str03.html',{'tw':'text'}],
            		['Dla kandydatów', 'dokumenty/str09.html',{'tw':'text'}],
	     ],	
	['REPERTUAR',  'dokumenty/str06.html',{'tw':'text'}
	],

	['GALERIA', null, null,
	    ['2002 - 2004','galeria/2002-2004/index.html',{'tw':'_blank'}],
	    ['2005 - 2009', null, null,
	    	['Różne koncerty', 'galeria/rozne/index.html',{'tw':'_blank'}],
              		['Budapeszt', 'galeria2/budapeszt/index.html',{'tw':'_blank'}],
              		['Stary Sącz', 'galeria2/stary/index.html',{'tw':'_blank'}], 
		['Biecz','galeria2/biecz/index.html',{'tw':'_blank'}],
             		['Strzyżów-Gorlice','galeria2/gck/index.html',{'tw':'_blank'}],
              		['Szymbark','galeria2/szymbark/index.html',{'tw':'_blank'}] 
	   ],
	   ['2010 - 2011', null, null,
	         	 ['Koncerty w 2010','galeria/belf2010/index.html',{'tw':'_blank'}] 
	   ],
	],
	
	['NAGRANIA', null, null, 
	     ['mp3', 'dokumenty/str02.html',{'tw':'text'}],           
                     ['filmy', 'dokumenty/str13.html',{'tw':'text'}],
	],
       	['SPONSORZY',  'dokumenty/str08.html',{'tw':'text'}
	],

];


