var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Home'), 'index.htm', null],
	[wrap_root('Bermuda'), 'about.htm', null],
	[wrap_root('Products & Services'), 'prodserv.htm', null],
	[wrap_root('Legal'), 'legal.htm', null],
	[wrap_root('Contact Us'), 'contact.htm', null],
	[wrap_root('Links'), 'links.htm', null],
	[wrap_root('International Online'), 'intonline.htm', 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=20>&nbsp;&nbsp;' + text + '&nbsp;&nbsp;</td></tr></table>'
	return res;
}
