c_mi('Environmental Health > Home', 'EH Home', '/eh/eh_main_page.htm');
c_mi('Environmental Health > Applications and Forms','Applications and Forms', '/eh/eh_permit_application.htm');
c_mi('Environmental Health > Land / Sewage', 'Land / Sewage', '/eh/land/eh_land_main.htm');
c_mi('Environmental Health > Food', 'Food', '/eh/food/eh_food_services.htm');
c_mi('Environmental Health > Water', 'Water', '#');
c_mi('Environmental Health > Water Laboratory', 'Water Laboratory', '#');
c_mi('Environmental Health > FAQ', 'FAQ', '/eh/eh_faq.htm');
c_mi('Environmental Health > Water / Sewage Fees', 'Water / Sewage Fees', '/eh/eh_fee_schedule.htm');
c_mi('Environmental Health > Food Service Fees', 'Food Service Fees', '/eh/food/eh_food_service_fees.htm');
c_mi('Environmental Health > Sanitary Code', 'Sanitary Code', '/eh/eh_laws.htm');
c_mi('Environmental Health > Web Links', 'Web Links', '/eh/eh_web_links.htm');
c_mi('Environmental Health > Grants', 'Grants', '#');
c_mi('Environmental Health > Information Request', 'Information Request', '/pdf/eh/freedom_of_information_act_form.pdf');
c_mi('Environmental Health > Contact Us', 'Contact Us', '/contact_eh.htm');



function c_mi(status, desc, link) {
	var html = ""

	html += "<tr>\n";
	html += '<td height="35" class="menu_item" onmouseover="this.className=' + "'menuover'; window.status='";
	html += status + "'; return true;" + '" onmouseout="this.className=' + "'menu_item'; window.status=''; return true;";
	html += '" onClick="window.location=' + "'" + link + "'" + '" style="cursor:hand"><b>' + desc + "</a></b></td>\n";
	html += "</tr>\n";

	document.write(html);
	return;
}