// 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', null, null,
		// this is how item scope settings are defined
		['Welcome', 'http://www.turtlebay-beachandgolf-resort.com/welcome.html', {'tw':'_parent'}],
		
	],
     ['Project', null, null,
		// this is how item scope settings are defined
		['Location', 'http://www.turtlebay-beachandgolf-resort.com/location.html', {'tw':'_parent'}],
		['Concept', 'http://www.turtlebay-beachandgolf-resort.com/concept.html', {'tw':'_parent'}],
		['Amenities', 'http://www.turtlebay-beachandgolf-resort.com/amenities.html', {'tw':'_parent'}],
		
	],	
	['Investment', null, null,
		// this is how item scope settings are defined
		['Land banking', 'http://www.turtlebay-beachandgolf-resort.com/landbanking.html', {'tw':'_parent'}],
		['Turtle Bay Formula', 'http://www.turtlebay-beachandgolf-resort.com/formula.html', {'tw':'_parent'}],
		['Legal Issues', 'http://www.turtlebay-beachandgolf-resort.com/legal.html', {'tw':'_parent'}],
	
	],
	['Plots', null, null,
		// this is how item scope settings are defined
		['Development Plan', 'http://www.turtlebay-beachandgolf-resort.com/development.html', {'tw':'_parent'}],
		['Price List', 'http://www.turtlebay-beachandgolf-resort.com/price.html', {'tw':'_parent'}],
		
	],
	['Villas', null, null,
		// this is how item scope settings are defined
		['Design Options', 'http://www.turtlebay-beachandgolf-resort.com/designoptions.html', {'tw':'_parent'}],
		
	],
	['Celebrities', null, null,
		// this is how item scope settings are defined
		['setting the trend', 'http://www.turtlebay-beachandgolf-resort.com/celeb1.html', {'tw':'_parent'}],
		['jet setter', 'http://www.turtlebay-beachandgolf-resort.com/celeb2.html', {'tw':'_parent'}],
		['famous neighbours', 'http://www.turtlebay-beachandgolf-resort.com/celeb3.html', {'tw':'_parent'}],
		
	],
	['Media', null, null,
		// this is how item scope settings are defined
		['Photo Gallery', 'http://www.turtlebay-beachandgolf-resort.com/photogallery.html', {'tw':'_parent'}],
		['Media Gallery', 'http://www.turtlebay-beachandgolf-resort.com/mediagallery.html', {'tw':'_parent'}],
		
	],
	['News', null, null,
		// this is how item scope settings are defined
		['Corporate News', 'http://www.turtlebay-beachandgolf-resort.com/corporatenews.html', {'tw':'_parent'}],
		
	],
	['Contact', null, null,
		// this is how item scope settings are defined
		['Meet the Team', 'http://www.turtlebay-beachandgolf-resort.com/team.html', {'tw':'_parent'}],
		['Contact-us', 'http://www.turtlebay-beachandgolf-resort.com/contact.html', {'tw':'_parent'}],
		['Email-form', 'http://www.turtlebay-beachandgolf-resort.com/emailform_turtlebay.html', {'tw':'_parent'}],
		
	],
	['Login', null, null,
		// this is how item scope settings are defined
		['Go to >', 'http://www.turtlebay-beachandgolf-resort.com/login.html', {'tw':'_parent'}],
		
	],
];

