// 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 = [
	['Hypo Consulting', null, null,
		['Profil spoločnosti', 'profil-Hypo-Consulting.html'],
		['Etický kodex', 'eticky-kodex.html'],
		['Najčastejšie otázky', 'najcastejsie-otazky.html'],
  	['Kariéra, spolupráca', 'kariera-spolupraca.html'],
	],

	['Hypotéky',null, null, 
//		['Hypotéka', 'hypoteka.html'],
		['Hypotéka pre mladých', 'hypoteka-a-statny-prispevok-pre-mladych.html'],
  	['Prefinancovanie hypotéky', 'prefinancovanie-hypoteky.html'],     
	  ['Hypotéka na novostavbu', 'hypoteka-na-novostavbu.html'],
		['Hypotéka na výstavbu', 'hypoteka-na-vystavbu.html'],	
		['Hypotekárny úver-sprievodca', 'hypotekarny-uver.html'],	
	 	['Americká hypotéka', 'americka-hypoteka.html'],
		['Hypotekárny certifikát', 'hypotekarny-certifikat.html'], 
		['Stavebné sporenie', 'stavebne-sporenie-so-zlavou.html'], 
		['Hypokalkulačka', 'hypokalkulacka'], 
		
		
	],
['Služby', null, null,
		['Pre klientov', 'hypotekarny-servis-a-konzultacie.html'],
		['Ako pracujeme', 'sluzby-ako-pracujeme.html'],
 // 	['Hypokalkulačka', 'hypokalkulacka'],
  	['Pre developerov', 'sluzby-pre-developerov.html'],
		['Pre realitné kancelárie', 'sluzby-pre-realitne-kancelarie.html'], 
		
	],
	['Realitný servis', 'realitny-servis.html'],

	['Partneri', null, null,
  	['Banky', 'partneri-banky.html'],
    ['Developeri', 'partneri-developeri.html'], 		
	  ['Realitné kancelárie', 'partneri-realitne-kancelarie.html'],
    ['Stavebné firmy', 'partneri-stavebne-firmy.html'],
    ['Ostatná spolupráca', 'partneri-spolupracujuce-firmy.html'],
  ],
	['Referencie', 'referencie-klientov.html'],
	['Kontakt', 'kontakt.html']
];

