// 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
// Struktura menu:
// ['Xbox Spot', null, null,]
//	|		|	|__________ okno w którym ma się otworzyć strona (brak lub null powoduje otwarcie strony w głównym oknie)
//	|		|________________	adres strony
//	|____________________________ nazwa menu (można używać znacznków html np. do pogrubienia <b> </b>
//

var MENU_ITEMS = [
	['Xbox Spot', 'http://www.xboxspot.pl', null],
	['Xbox 360 FAQ', 'http://sikalafo.webd.pl/xs/index.html'], 

	['Aktualności', 'http://www.xboxspot.pl', null,
		['Najnowsze', 'http://sikalafo.webd.pl/xs/index.html'],
		['Archiwum', '../demo2/index.html']
	],

	['Artykuły', 'http://www.xboxspot.pl', null,
		['Zapowiedzi', 'http://sikalafo.webd.pl/xs/index.html'],
		['Playtesty', '../demo2/index.html'],
		['Recenzje', '../demo4/index.html'],
		['Publicystyka', '../demo5/index.html']
	],

	['Baza Gier', 'http://sikalafo.webd.pl/xs/index.html'],

	['Osiągnięcia', 'http://sikalafo.webd.pl/xs/index.html'],

	['Premiery', 'http://www.xboxspot.pl', null,
		['Forza Motorsport 3', 'http://sikalafo.webd.pl/xs/index.html'],
		['Risen', 'http://sikalafo.webd.pl/xs/index.html']
	],

	['Download', 'http://sikalafo.webd.pl/xs/index.html'],

	['<b>Forum</b>', 'http://sikalafo.webd.pl/xs/index.html'],

	['Redakcja', 'http://www.xboxspot.pl', null,
		['Zespół', 'http://sikalafo.webd.pl/xs/index.html'],
		['Kontakt', 'http://sikalafo.webd.pl/xs/index.html'],
		['Historia', 'http://sikalafo.webd.pl/xs/index.html'],
		['Reklama', 'http://sikalafo.webd.pl/xs/index.html'],
		['Współpraca', 'http://sikalafo.webd.pl/xs/index.html'],
		['Praca', 'http://sikalafo.webd.pl/xs/index.html']
	],

	['Inne', 'http://sikalafo.webd.pl/xs/index.html']

];

