/* Tigra Menu items structure */
var MENU_ITEMS = [
	wr(['HOME', 'index.php']),
	wr(['ACCOMMODATIONS', 'chambre.htm']),
	wr(['RESERVATIONS', 'reservation.htm']),
	wr(['RESTAURANT', null, null,
		['Brasserie des Arts', 'restauration.php'],
		['Take away dishes', 'take-away.htm']
	]),
	wr(['SEMINARS & INCENTIVES', null, null,
		['Seminars', 'seminaire.htm'],
		['Incentives', 'incentives.htm']
	]),
	wr(['BANQUETS & WEDDINGS', null, null,
		['Banquets', 'banquet.htm'],
		['Weddings', 'mariage.htm']
	]),
	wr(['NEWS', null, null,
		['News', 'actualites.php'],
		['Photo gallery', 'galerie/']
	]),
	wr(['INFORMATION & VISITS', 'pratique.htm']),
	wr(['CONTACT', 'contact.htm'])
];

function wr (a_item) {
	if (window.CURRENT_ITEM && CURRENT_ITEM == a_item[0]) {
		if (a_item[2]) a_item[2]['id'] = 'itemHighlight';
		else a_item[2] = {'id':'itemHighlight'};
	}
	return a_item;
}

