c_mi('Health Education > Home', 'Health Ed Home', '/hed/health_education.htm');
c_mi('Health Education > Fees', 'Fees for Services', '/hed/hed_fees.htm');
c_mi('Health Education > Brochures', 'Brochures', '/hed/hed_brochures.htm');
c_mi('Health Education > Fact Sheets', 'Fact Sheets', '/hed/hed_fact_sheets.htm');
c_mi('Health Education > Staff', 'Staff', '/hed/hed_staff.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;
}