var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Home'), 'index.html'],
	[wrap_root('Rooms',1), 'rooms.html'],
	[wrap_root('Suites',1), 'suites.html'],
	[wrap_root('Rates',1), 'rates.html'],
	[wrap_root('Things&nbsp;To&nbsp;Do',1), 'activities.html'],
	[wrap_root('Directions',1), 'directions.html'],
	[wrap_root('Reservations',1), 'contactus.html']
]

function wrap_child (text) {
	return '&nbsp;&nbsp;' + text + '&nbsp;&nbsp;';
}

function wrap_root (text, c) {
	var res = [];
	for (var i in states)
		res[i] = '<table cellpadding=0 cellspacing=0 border=0 width=100%><tr>' + (c ? '<td><font color="#cccccc">|</font></td>' : '') + '<td valign=middle align=right class=m0' + states[i] + 'i width=100% height=18>&nbsp;&nbsp;' + text + '&nbsp;&nbsp;</td></tr></table>'
	return res;
}