﻿// 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 = [
  ['HOME', 'index.php'],
	['CAR RENTAL', null, null,
		['Get a Quote', 'index.php'],
		['Terms and Conditions', 'terms.php'],
		['Road guide', 'guide.php'],
		['Help and Advices', 'help.php'],
	],
	['DESTINATION INFO', null, null,
		['Croatia', 'croatia.php'],
		['Zadar', 'zadar.php'],
		['Split', 'split.php'],
		['Dubrovnik', 'dubrovnik.php'],
		['Pula', 'pula.php'],
	],
	['ABOUT US/CONTACT', 'about_us.php'
	],

	['LANGUAGES', null, null,
	 	['English', 'http://www.cheapcarscroatia.com'],
	 	['Hrvatski', 'http://translate.google.com/translate?hl=en&sl=en&tl=hr&u=' + window.location.href + '', {'tw' : '_blank'}],
		['Deutsch', 'http://translate.google.com/translate?hl=en&sl=en&tl=de&u=' + window.location.href + '', {'tw' : '_blank'}],
		['Italiano', 'http://translate.google.com/translate?hl=en&sl=en&tl=it&u=' + window.location.href + '', {'tw' : '_blank'}],
		['Espanol', 'http://translate.google.com/translate?hl=en&sl=en&tl=es&u=' + window.location.href + '', {'tw' : '_blank'}],
		['Français', 'http://translate.google.com/translate?hl=en&sl=en&tl=fr&u=' + window.location.href + '', {'tw' : '_blank'}],
		['Slovenčina', 'http://translate.google.com/translate?hl=en&sl=en&tl=sk&u=' + window.location.href + '', {'tw' : '_blank'}],		
	 ]
	
];


