// 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 = [
	['Surf', null, null,
		// this is how item scope settings are defined
		['Informations', 'http://www.nautilus-tours.com/fr/glisse/surf.php', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
		['Packages', 'http://www.nautilus-tours.com/fr/glisse/packagesurf.php', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
	],
	['Kitesurf', null, null,
		// this is how item scope settings are defined
		['Informations', 'http://www.nautilus-tours.com/fr/glisse/kitesurf.php', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
		['Packages', 'http://www.nautilus-tours.com/fr/glisse/packagekite.php', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
	],
	['Peche', null, null,
		// this is how item scope settings are defined
		['Informations', 'http://www.nautilus-tours.com/fr/peche/jigg.php', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
		['Packages', 'http://www.nautilus-tours.com/fr/peche/packagejigg.php', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
	],
	['Plongee', null, null,
		// this is how item scope settings are defined
		['Informations', 'http://www.nautilus-tours.com/fr/plongee/bouteille.php', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
		['Packages', 'http://www.nautilus-tours.com/fr/plongee/packagebouteille.php', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
	],
	['Golf', null, null,
		// this is how item scope settings are defined
		['Informations', 'http://www.nautilus-tours.com/fr/golf/parcours.php', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
		['Packages', 'http://www.nautilus-tours.com/fr/golf/packagegolf.php', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
	],
	['Excursions', null, null,
		// this is how item scope settings are defined
		['Ecotours', 'http://www.nautilus-tours.com/fr/ecotours/pmt.php', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
		['Visites', 'http://www.nautilus-tours.com/fr/ecotours/visites.php', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
	],
	['Sejours', null, null,
		// this is how item scope settings are defined
		['Iles', 'http://www.nautilus-tours.com/fr/excursions/iles.php', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
		['Croisieres', 'http://www.nautilus-tours.com/fr/croisieres/aventure.php', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
		// this is how multiple item scope settings are defined
		['Auto-Tours', 'http://www.nautilus-tours.com/fr/excursions/autotours.php', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
	],
	['Hebergement', null, null,
		// this is how item scope settings are defined
		['Hotels', 'http://www.nautilus-tours.com/fr/hotels/index.php', {'tw':'_top'}],
		// this is how item scope settings are defined
		['Gites', 'http://www.nautilus-tours.com/fr/gites/index.php', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
		['Camping', 'http://www.nautilus-tours.com/fr/camping/index.php', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
	],
	['Locations', null, null,
		// this is how item scope settings are defined
		['Voitures', 'http://www.nautilus-tours.com/fr/locations/tarifsvoitures.php', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
		['Materiel', 'http://www.nautilus-tours.com/fr/locations/materiel.php', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
	],
	
];


