// 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', 'english/etageproperty.html', {'tw':'content'},
		
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		
	],
	['Projects', null, null,
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['Project Vista', null, null,
			['Drawings', 'english/vista_drawings.html', {'tw':'content'}],
			['The development', 'english/vista_development.html', {'tw':'content'}],
			['Our service package', 'english/vista_service.html', {'tw':'content'}],
		],
		
	],
	['Montenegro', null, null,
	['Country facts', 'english/montenegro.html', {'tw':'content'}],
	['Gallery', 'englishgallery.html', {'tw':'content'}],
	],

	['About us', 'english/about_etage_property.html', {'tw':'content'},

	],
	['Contact', null, null,
	['Contact us', 'english/contact_etage_property.html', {'tw':'content'}],
	['We will contact you', 'english/contact_me.html', {'tw':'content'}],
	],
	
];




