var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Services'), '/services.php'],
	[wrap_root('News', 1), '/news.php'],
	[wrap_root('Catalog', 1), 'http://stores.ebay.com/Ultimate-Marine-Group'],
	[wrap_root('Contact', 1), '/contact.php']
]

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=22>&nbsp;&nbsp;' + text + '&nbsp;&nbsp;</td></tr></table>'
	return res;
}