var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Home'), 'http://www.seedosrun.com', {'sw':140, 'bw':140}],
	[wrap_root('About Me', 1), null, {'sw':140, 'bw':140},
		[wrap_child('Summary'), 'http://www.seedosrun.com/summary.aspx'],
		[wrap_child('Journal'), 'http://www.xanga.com/seedosrun'],
		[wrap_child('Dating'), 'http://www.seedosrun.com/dating.aspx'],
	],
	[wrap_root('Professional Info', 1), null, {'sw':140, 'bw':'140'},
		[wrap_child('Resume'), 'http://www.seedosrun.com/resume.aspx'],
		[wrap_child('Code'), 'http://www.seedosrun.com/code.aspx'],
	],
	[wrap_root('Pictures', 1), null, {'sw':140, 'bw':140},
		[wrap_child('Overview'), 'http://www.seedosrun.com/pictures.aspx'],
		[wrap_child('9.11'), 'http://www.seedosrun.com/911.aspx'],
		[wrap_child('cars'), 'http://www.seedosrun.com/cars.aspx'],
		[wrap_child('events'), 'http://www.seedosrun.com/events.aspx'],
		[wrap_child('nature'), 'http://www.seedosrun.com/nature.aspx'],
		[wrap_child('people'), 'http://www.seedosrun.com/people.aspx'],
		[wrap_child('random'), 'http://www.seedosrun.com/random.aspx'],
		[wrap_child('religious'), 'http://www.seedosrun.com/religious.aspx'],
		[wrap_child('structures'), 'http://www.seedosrun.com/structures.aspx'],
	],
	[wrap_root('Guestbook', 1), 'http://www.seedosrun.com/guestbook.aspx', {'sw':140, 'bw':140}]
]

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;
}
