// 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 = [
	['Céginformációk', 'index.php', null,
		// this is how item scope settings are defined
		['Cégtörténet', 'ceginfo.php'],
		// this is how multiple item scope settings are defined
		['Tevékenységi kör', 'tevkor.php'],
		['Stratégia', 'strategia.php'],
		['Telephelyeink', 'telep.php']
	],
	['Szerepvállalás', null, null,
		// this is how item scope settings are defined
		['Támogatási Politika', 'services.php'],
		// this is how multiple item scope settings are defined
		['Vállalati értékek', 'services.php'],
		['Minőségirányítás', 'cert.php'],
	],
	['Szolgáltatásaink', null, null,
		['Mezőgazdasági termelés', 'mgterm.php'],
		['Szárítás, bértárolás', 'szarit.php'],
		['Fuvarozás', 'szallit.php'],
		['Logisztikai tevékenység', 'logisztika.php'],
		['Kereskedelem', 'kereskedelem.php'],
		['Phylazonit', 'phylazonit.php']
	],
	['Társvállalkozásaink', null, null,
		// this is how item scope settings are defined
		['Gof-Hungary kft', 'http://gof.hu', {'tw':'_blank'}],
		// this is how multiple item scope settings are defined
		['Yaq tápkeverő Kft.', 'yaq.php'],
		['Phylazonit', 'http://www.phylazonit.hu', {'tw':'_blank'}],
		['Splc-E Kft.', 'http://www.splce.hu', {'tw':'_blank'}]
	],
	['Egyéb információk', null, null,
		['Kapcsolatfelvétel', 'kapcsolat.php'],
		['Galéria', 'gallery.html']
	]
];


