var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root(' Home Page'), 'main.shtml', self 
	],
	[wrap_root('Calendar'), 'calendar.php', self
	],
	[wrap_root('OSWCD Board'), 'about.shtml', self
	],
	[wrap_root('Meetings'), 'meetings.shtml', self
	],
	[wrap_root('Education Programs'), 'education.shtml', self
	],
	[wrap_root('Mobile Irrigation Lab'), 'milab.shtml', self
	],
	[wrap_root('OSWCD Programs'), 'programs.shtml', self
	],
	[wrap_root('Water Conservation'), 'watercon.shtml', self
	],
	[wrap_root('Frequently Asked Questions'), 'faq.shtml', self
	],
	[wrap_root('Media'), 'media.shtml', self
	],
	[wrap_root('Links'), 'links.shtml', self
	],
	[wrap_root('Contact'), 'contact.php', self
	]
]

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