c_mi('Emergency Preparedness > Home', 'Emergency Preparedness Home', '/bt/bt_main_page.htm');
c_mi('Emergency Preparedness > General Information', 'General Information', '/bt/bt_general_information.htm');
c_mi('Emergency Preparedness > Fact Sheets', 'Fact Sheets', '/bt/bt_fact_sheets.htm');
//c_mi('Emergency Preparedness > Pandemic Influenza Planning', 'Pandemic Influenza Planning', '/bt/bt_pandemic_influenza_planning.htm');
c_mi('Emergency Preparedness > First Responders', 'First Responders', '/bt/bt_first_responders.htm');
c_mi('Emergency Preparedness > Healthcare Professionals', 'Healthcare Professionals', '/bt/bt_healthcare_professionals.htm');
c_mi('Emergency Preparedness > Individuals and Families', 'Individuals and Families', '/bt/bt_individuals_and_families.htm');
c_mi('Emergency Preparedness > Educational Institutions', 'Educational Institutions', '/bt/bt_educational_institutions.htm');
c_mi('Emergency Preparedness > Community Organizations / Businesses', 'Community Organizations / Businesses', '/bt/bt_community_organizations.htm');
c_mi('Emergency Preparedness > Faith-Based Communities', 'Faith-Based Communities', '/bt/bt_faith_based_organizations.htm');
c_mi('Emergency Preparedness > Staff', 'Staff', '/bt/bt_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 + "</b></td>\n";
	html += "</tr>\n";

	document.write(html);
	return;
}