// 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 = [
	['kdo&nbsp;jsme', '?page=kdo_jsme'],
	['portfolio&nbsp;služeb', null, null,
		['Medi&aacute;ln&iacute;&nbsp;pl&aacute;nov&aacute;n&iacute;', '?page=medialni_planovani'],
		['Event&nbsp;management', '?page=event_management'],
		['Outdoor&nbsp;reklama', '?page=outdoor_reklama'],
		['V&yacute;stavn&iacute;&nbsp;expozice', '?page=vystavni_expozice'],
		['Grafick&eacute;&nbsp;a&nbsp;tiskov&eacute;&nbsp;služby&nbsp;na&nbsp;kl&iacute;č', '?page=graficky_design'],
	],
	['reference', null, null,
		['Outdoor reklama', null, null,
			['Billboardy', '?page=billboardy'],
			['MediUPy', '?page=mediupy'],
		],
		['Event management', '?page=event_managment'],
		['Média', null, null,
			['Rádio', '?page=radio'],
			['Televize', '?page=televize'],
			['Mediální plánovaní', '?page=media_medialni_planovani'],
			['Press', '?page=press'],
			['Internet', '?page=internet'],
		],
		['Ostatní služby', '?page=ostatni_sluzby'],
	],
	['kontakty', '?page=kontakty']
];


