var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Home'), 'page.php?ref=1', null, 
		],
	[wrap_root('About Us'), 'page.php?ref=2',null,
		
	],
	[wrap_root('Our Rates'), 'page.php?ref=3',null,
	],
	[wrap_root('Availability'), 'page.php?ref=4', null,
	],
	[wrap_root('Contact Us'), 'page.php?ref=5', null,
	],
	[wrap_root('Area Info'), 'page.php?ref=6', null,
	]
]

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=white>|</font></td>' : '') + '<td valign=middle align=center class=m0' + states[i] + 'i width=100% height=18>&nbsp;&nbsp;' + text + '&nbsp;&nbsp;</td></tr></table>'
	return res;
}
