/////////////////////////////////////////////////////////////////////////////
// Function : NavNode (constructor)
// Comments :
/////////////////////////////////////////////////////////////////////////////
function NavNode(id, label, href, parent)
{
	this.m_parent = null;
	this.m_level = 0;

	if (parent)
	{
		this.m_parent = parent;
		this.m_level = parent.m_level+1;
	}

	this.m_id = id;

	// assume that m_label will most often be used directly as HTML
	this.m_rawlabel = label;

	label = label.replace(/&/g, '&amp;');
	label = label.replace(/</g, '&lt;');
	label = label.replace(/>/g, '&gt;');
	label = label.replace(/"/g, '&quot;');

	this.m_label = label;

	this.m_href = href;
	this.m_subNodes = new Array();

	var argValues = NavNode.arguments;
	var argCount = NavNode.arguments.length;

	for (i = 4 ; i < argCount ; i++)
	{
		var eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		eval("this.cp_" + attrName + " = '" + attrValue + "';");
	}

	NavNode.prototype.addNode = addNode;
	NavNode.prototype.isSelected = isSelected;
}

/////////////////////////////////////////////////////////////////////////////
// Function : addNode
// Comments :
/////////////////////////////////////////////////////////////////////////////
function addNode(id, label, href)
{
	var newIndex = this.m_subNodes.length;
	var newNode = new NavNode(id, label, href, this);

	var argValues = addNode.arguments;
	var argCount = addNode.arguments.length;

	for (i = 3 ; i < argCount ; i++)
	{
		var eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		eval("newNode.cp_" + attrName + " = '" + attrValue + "';");
	}

	this.m_subNodes[newIndex] = newNode;
	return newNode;
}

/////////////////////////////////////////////////////////////////////////////
// Function : isSelected
// Comments :
/////////////////////////////////////////////////////////////////////////////
function isSelected()
{
    var pos = window.location.href.lastIndexOf("/");
    var docname = window.location.href.substring(pos+1, window.location.href.length);

    pos = this.m_href.lastIndexOf("/");
    var myname = this.m_href.substring(pos+1, this.m_href.length);

    if (docname == myname)
		return true;
	else
		return false;
}

/////////////////////////////////////////////////////////////////////////////
// Function : customSectionPropertyExists
// Comments :
/////////////////////////////////////////////////////////////////////////////
function customSectionPropertyExists(csp)
{
	return (typeof csp != _U && csp != null);
}

/////////////////////////////////////////////////////////////////////////////
// Function : getCustomSectionProperty
// Comments :
/////////////////////////////////////////////////////////////////////////////
function getCustomSectionProperty(csp)
{
	if (customSectionPropertyExists(csp))
	{
		return csp;
	}
	else
	{
		return "";
	}
}

/////////////////////////////////////////////////////////////////////////////

var g_navNode_Root = new NavNode('46','Home',ssUrlPrefix + 'index.htm',null,'SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_def_css.css','SectionName==Business','SectionNameURL==Business','secondaryUrlVariableField==region1');
g_navNode_1=g_navNode_Root.addNode('47','E-Services',ssUrlPrefix + 'Services/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services','SectionTitle==Services');
g_navNode_1_0=g_navNode_1.addNode('PayOnline','Pay Online',ssUrlPrefix + 'Services/PayOnline/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services');
g_navNode_1_1=g_navNode_1.addNode('RequestorSearchforaService','Request or Search for a Service',ssUrlPrefix + 'Services/RequestorSearchforaService/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services');
g_navNode_1_1_2=g_navNode_1_1.addNode('DownloadCityTaxForms','Download City Tax Forms',ssUrlPrefix + 'Services/RequestorSearchforaService/DownloadCityTaxForms/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services');
g_navNode_1_1_3=g_navNode_1_1.addNode('FileaDiscriminationComplaint','File a Discrimination Complaint',ssUrlPrefix + 'Services/RequestorSearchforaService/FileaDiscriminationComplaint/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services');
g_navNode_1_1_7=g_navNode_1_1.addNode('AffirmativeActionProgram','Make an Affirmative Action Program Proposal',ssUrlPrefix + 'Services/RequestorSearchforaService/AffirmativeActionProgramProposal/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services');
g_navNode_1_1_9=g_navNode_1_1.addNode('PermitsandLicenses','Permits and Licenses',ssUrlPrefix + 'Services/RequestorSearchforaService/PermitsandLicenses/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services');
g_navNode_1_1_11=g_navNode_1_1.addNode('ReportaPothole','Report a Pothole',ssUrlPrefix + 'Services/RequestorSearchforaService/ReportaPothole/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services');
g_navNode_1_1_12=g_navNode_1_1.addNode('RequestaCapitalImprovement','Request a Capital Improvement',ssUrlPrefix + 'Services/RequestorSearchforaService/RequestaCapitalImprovement/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services');
g_navNode_1_1_13=g_navNode_1_1.addNode('RequestInfoCourtDateAddress','Request Info, a Court Date or an Address Change from Municipal Court',ssUrlPrefix + 'Services/RequestorSearchforaService/RequestInfoCourtDateAddressChange/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services');
g_navNode_1_1_15=g_navNode_1_1.addNode('SignUpfore-Newsletters','Sign Up for e-Newsletters',ssUrlPrefix + 'Services/RequestorSearchforaService/SignUpfore-Newsletters/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services');
g_navNode_1_1_18=g_navNode_1_1.addNode('SearchforFoodInspectionResults','Search for Food Inspection Results',ssUrlPrefix + 'Services/RequestorSearchforaService/SearchforFoodInspectionResults/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services');
g_navNode_1_2=g_navNode_1.addNode('Register','Register',ssUrlPrefix + 'Services/Register/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_services_hbg.css','SectionName==Services','SectionNameURL==Services');
g_navNode_2=g_navNode_Root.addNode('48','Residents',ssUrlPrefix + 'Residents/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_res_css.css','SectionName==Residents','SectionNameURL==Residents');
g_navNode_2_0=g_navNode_2.addNode('1950','KCStat',ssUrlPrefix + 'Residents/KCStat/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_2_1=g_navNode_2.addNode('Neighborhoods','Neighborhoods',ssUrlPrefix + 'Residents/Neighborhoods/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_res_css.css','SectionName==Residents','SectionNameURL==Residents');
g_navNode_2_2=g_navNode_2.addNode('Housing','Housing',ssUrlPrefix + 'Residents/Housing/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_res_css.css','SectionName==Residents','SectionNameURL==Residents');
g_navNode_2_3=g_navNode_2.addNode('Recreation','Recreation',ssUrlPrefix + 'Residents/Recreation/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_res_css.css','SectionName==Residents','SectionNameURL==Residents');
g_navNode_2_4=g_navNode_2.addNode('Taxes','Taxes',ssUrlPrefix + 'Residents/Taxes/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_res_css.css','SectionName==Residents','SectionNameURL==Residents');
g_navNode_2_5=g_navNode_2.addNode('NewResidents','New Residents',ssUrlPrefix + 'Residents/NewResidents/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_res_css.css','SectionName==Residents','SectionNameURL==Residents');
g_navNode_2_7=g_navNode_2.addNode('1618','Pacesetter',ssUrlPrefix + 'Residents/Pacesetter/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_res_css.css','SectionName==Residents','SectionNameURL==Residents');
g_navNode_2_8=g_navNode_2.addNode('1790','City Redistricting Process',ssUrlPrefix + 'Residents/CityRedistrictingProcess/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_res_css.css','SectionName==Residents','SectionNameURL==Residents');
g_navNode_2_9=g_navNode_2.addNode('1896','KCMOre',ssUrlPrefix + 'Residents/KCMOre/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_res_css.css');
g_navNode_3=g_navNode_Root.addNode('Business','Business',ssUrlPrefix + 'Business/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_4=g_navNode_Root.addNode('50','Visitors',ssUrlPrefix + 'Visitors/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/visitors.css','SectionName==Visitors','SectionNameURL==Visitors','SectionTitle==Vistors');
g_navNode_5=g_navNode_Root.addNode('1853','City Officials',ssUrlPrefix + 'CityOfficials/index.htm','SectionCSS==/idc/groups/cco/documents/ckcmowebassets/kcmo_co_css.css','SectionName==City Officials');
g_navNode_7=g_navNode_Root.addNode('Depts','Departments',ssUrlPrefix + 'Depts/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business','SectionTitle==Departments');
g_navNode_7_0=g_navNode_7.addNode('AviationDepartment','Aviation Department',ssUrlPrefix + 'Depts/AviationDepartment/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_1=g_navNode_7.addNode('DeptCityAuditorsOffice','City Auditor\'s Office',ssUrlPrefix + 'Depts/DeptCityAuditorsOffice/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_2=g_navNode_7.addNode('671','Capital Projects Department',ssUrlPrefix + 'Depts/CapitalProjectsDepartment/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_2_1=g_navNode_7_2.addNode('376','Capital Improvements Program \x28CIP\x29',ssUrlPrefix + 'Depts/CapitalProjectsDepartment/CaptialImprovementsProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_2_1_5=g_navNode_7_2_1.addNode('384','Public Improvements Advisory Committee \x28PIAC\x29',ssUrlPrefix + 'Depts/CapitalProjectsDepartment/CaptialImprovementsProgram/PublicImprovementsAdvisoryCommittee/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName== Business','SectionNameURL==Business');
g_navNode_7_2_1_5_0=g_navNode_7_2_1_5.addNode('385','Public Improvements Advisory Committee \x28PIAC\x29 Requests',ssUrlPrefix + 'Depts/CapitalProjectsDepartment/CaptialImprovementsProgram/PublicImprovementsAdvisoryCommittee/PublicImprovementsAdvisoryCommitteePIACRequests/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_2_2=g_navNode_7_2.addNode('2764','Capital Projects Department project tracker',ssUrlPrefix + 'Depts/CapitalProjectsDepartment/CapitalProjectsDepartmentprojecttracker/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_2_3=g_navNode_7_2.addNode('2763','Reports',ssUrlPrefix + 'Depts/CapitalProjectsDepartment/Reports/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_2_4=g_navNode_7_2.addNode('2762','Projects',ssUrlPrefix + 'Depts/CapitalProjectsDepartment/Projects/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_3=g_navNode_7.addNode('DeptCityClerksOffice','City Clerk\'s Office',ssUrlPrefix + 'Depts/DeptCityClerksOffice/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4=g_navNode_7.addNode('124','City Manager\'s Office',ssUrlPrefix + 'Depts/CityManagersOffice/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_0=g_navNode_7_4.addNode('913','Emergency Medical Services',ssUrlPrefix + 'Depts/CityManagersOffice/EmergencyMedicalServices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_1=g_navNode_7_4.addNode('522','Office of Emergency Management',ssUrlPrefix + 'Depts/CityManagersOffice/OfficeofEmergencyManagement/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_1_0=g_navNode_7_4_1.addNode('627','Local Emergency Operations Plan',ssUrlPrefix + 'Depts/CityManagersOffice/OfficeofEmergencyManagement/LocalEmergencyOperationsPlan/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_2=g_navNode_7_4.addNode('497','Office of Management and Budget',ssUrlPrefix + 'Depts/CityManagersOffice/Office of Management and Budget/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_4=g_navNode_7_4.addNode('507','Central Contract File',ssUrlPrefix + 'Depts/CityManagersOffice/CentralContractFile/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_5=g_navNode_7_4.addNode('508','Office of Environmental Quality',ssUrlPrefix + 'Depts/CityManagersOffice/OfficeofEnvironmentalQuality/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_5_7=g_navNode_7_4_5.addNode('515','Environmental Management Commission',ssUrlPrefix + 'Depts/CityManagersOffice/OfficeofEnvironmentalQuality/EnvironmentalManagementCommission/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_5_7_0=g_navNode_7_4_5_7.addNode('527','EMC Minutes',ssUrlPrefix + 'Depts/CityManagersOffice/OfficeofEnvironmentalQuality/EnvironmentalManagementCommission/EMCMinutes/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business','secondaryUrlVariableField==region1');
g_navNode_7_4_5_7_1=g_navNode_7_4_5_7.addNode('526','Join the Environmental Management Commission',ssUrlPrefix + 'Depts/CityManagersOffice/OfficeofEnvironmentalQuality/EnvironmentalManagementCommission/EnvironmentalManagementCommission2/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_6=g_navNode_7_4.addNode('537','The 3-1-1 Action Center',ssUrlPrefix + 'Depts/CityManagersOffice/The3-1-1ActionCenter/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_7=g_navNode_7_4.addNode('577','Internships and fellowships with the City',ssUrlPrefix + 'Depts/CityManagersOffice/InternshipsandfellowshipswiththeCity/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_8=g_navNode_7_4.addNode('596','KCBizcare, Business Customer Service Center',ssUrlPrefix + 'Depts/CityManagersOffice/BusinessCustomerServiceCenter/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_9=g_navNode_7_4.addNode('601','Living in Kansas City',ssUrlPrefix + 'Depts/CityManagersOffice/LivinginKansasCity/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_10=g_navNode_7_4.addNode('648','Community Partners',ssUrlPrefix + 'Depts/CityManagersOffice/CommunityPartners/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_10_0=g_navNode_7_4_10.addNode('602','Keep Kansas City Beautiful',ssUrlPrefix + 'Depts/CityManagersOffice/CommunityPartners/KeepKansasCityBeautiful/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_10_0_0=g_navNode_7_4_10_0.addNode('605','Let\'s Keep Kansas City Beautiful',ssUrlPrefix + 'Depts/CityManagersOffice/CommunityPartners/KeepKansasCityBeautiful/LetsKeepKansasCityBeautiful/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_10_0_1=g_navNode_7_4_10_0.addNode('603','Volunteers measure Kansas City\'s litter problem',ssUrlPrefix + 'Depts/CityManagersOffice/CommunityPartners/KeepKansasCityBeautiful/VolunteersmeasureKansasCityslitterproblem/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_11=g_navNode_7_4.addNode('660','Summaries of proposals to the ARRA 2009',ssUrlPrefix + 'Depts/CityManagersOffice/SummariesofproposalstotheAmericanRecoveryandReinvestmentActof2009/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_12=g_navNode_7_4.addNode('686','Office of Civic and Community Engagement',ssUrlPrefix + 'Depts/CityManagersOffice/OfficeofCivicandCommunityEngagement/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_12_0=g_navNode_7_4_12.addNode('939','City of Kansas City, Mo. Bright Future employment fair',ssUrlPrefix + 'Depts/CityManagersOffice/OfficeofCivicandCommunityEngagement/BrightFuture/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_12_0_0=g_navNode_7_4_12_0.addNode('944','Bright Future Employer Registration',ssUrlPrefix + 'Depts/CityManagersOffice/OfficeofCivicandCommunityEngagement/BrightFuture/YouthAdvocacyOffice4/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_12_0_3=g_navNode_7_4_12_0.addNode('EmploymentDescriptions','Employment Descriptions',ssUrlPrefix + 'Depts/CityManagersOffice/OfficeofCivicandCommunityEngagement/BrightFuture/EmploymentDescriptions/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_14=g_navNode_7_4.addNode('699','City Communications',ssUrlPrefix + 'Depts/CityManagersOffice/CityCommunications/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_14_0=g_navNode_7_4_14.addNode('710','Channel 2',ssUrlPrefix + 'Depts/CityManagersOffice/CityCommunications/Channel2/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_14_1=g_navNode_7_4_14.addNode('924','News',ssUrlPrefix + 'Depts/CityManagersOffice/CityCommunications/NewsReleases/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_14_9=g_navNode_7_4_14.addNode('8','GoogleKC',ssUrlPrefix + 'Depts/CityManagersOffice/CityCommunications/GoogleKC/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_16=g_navNode_7_4.addNode('2615','International Affairs and Protocol',ssUrlPrefix + 'Depts/CityManagersOffice/InternationalAffairsandTradeOffice/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_17=g_navNode_7_4.addNode('2678','2010 Census',ssUrlPrefix + 'Depts/CityManagersOffice/2010Census/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_18=g_navNode_7_4.addNode('2773','Internal Auditor\'s Office',ssUrlPrefix + 'Depts/CityManagersOffice/InternalAuditorsOffice/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_18_0=g_navNode_7_4_18.addNode('1912','Ethics Hotline',ssUrlPrefix + 'Depts/CityManagersOffice/InternalAuditorsOffice/EthicsHotline/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_4_19=g_navNode_7_4.addNode('1696','Americans with Disabilities Act',ssUrlPrefix + 'Depts/CityManagersOffice/AmericanswithDisabilitiesAct/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_5=g_navNode_7.addNode('125','City Planning and Development',ssUrlPrefix + 'Depts/CityPlanningandDevelopment/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_6=g_navNode_7.addNode('2058','Convention and Entertainment Facilities',ssUrlPrefix + 'Depts/ConventionandEntertainmentFacilities/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_8=g_navNode_7.addNode('135','Finance',ssUrlPrefix + 'Depts/Finance/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_9=g_navNode_7.addNode('122','Fire',ssUrlPrefix + 'Depts/Fire/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_10=g_navNode_7.addNode('668','General Services',ssUrlPrefix + 'Depts/GeneralServices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_10_0=g_navNode_7_10.addNode('709','General Administration Division',ssUrlPrefix + 'Depts/GeneralServices/Administration/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_10_1=g_navNode_7_10.addNode('676','Procurement Services Division',ssUrlPrefix + 'Depts/GeneralServices/Procurement/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_10_2=g_navNode_7_10.addNode('672','Facility Services Division',ssUrlPrefix + 'Depts/GeneralServices/Facility/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_10_2_0=g_navNode_7_10_2.addNode('121','Municipal Art Commission',ssUrlPrefix + 'Depts/GeneralServices/Facility/MunicipalArtCommission/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_10_3=g_navNode_7_10.addNode('675','Central Fleet Division',ssUrlPrefix + 'Depts/GeneralServices/CFD/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_10_4=g_navNode_7_10.addNode('681','Records Management Division',ssUrlPrefix + 'Depts/GeneralServices/Records/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_10_5=g_navNode_7_10.addNode('682','Risk Management Division',ssUrlPrefix + 'Depts/GeneralServices/Risk/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_10_6=g_navNode_7_10.addNode('674','City Wide Security Division',ssUrlPrefix + 'Depts/GeneralServices/Security/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_10_7=g_navNode_7_10.addNode('683','Real Estate Services Division',ssUrlPrefix + 'Depts/GeneralServices/Property/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_10_7_0=g_navNode_7_10_7.addNode('2758','Excess Parcels',ssUrlPrefix + 'Depts/GeneralServices/Property/ExcessParcels/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_10_8=g_navNode_7_10.addNode('684','Corporate Safety Division',ssUrlPrefix + 'Depts/GeneralServices/Safety/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11=g_navNode_7.addNode('136','Health',ssUrlPrefix + 'Depts/Health/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_0=g_navNode_7_11.addNode('1192','Office of Epidemiology and Community Health Monitoring',ssUrlPrefix + 'Depts/Health/OfficeofEpidemiologyandCommunityHealthMonitoring/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_1=g_navNode_7_11.addNode('1151','Project Lead Safe KC',ssUrlPrefix + 'Depts/Health/ProjectLeadSafeKC/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_2=g_navNode_7_11.addNode('1056','Health Department',ssUrlPrefix + 'Depts/Health/HealthDepartment/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_3=g_navNode_7_11.addNode('518','Administration',ssUrlPrefix + 'Depts/Health/Administration/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_3_0=g_navNode_7_11_3.addNode('2722','All is well',ssUrlPrefix + 'Depts/Health/Administration/Alliswell/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_3_1=g_navNode_7_11_3.addNode('2923','Aim4Peace',ssUrlPrefix + 'Depts/Health/Administration/Aim4Peace/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_4=g_navNode_7_11.addNode('519','Kansas City, Missouri Air Quality Program ',ssUrlPrefix + 'Depts/Health/KansasCityMissouriAirQualityProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_5=g_navNode_7_11.addNode('525','Anthrax FAQ ',ssUrlPrefix + 'Depts/Health/AnthraxFAQ/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_6=g_navNode_7_11.addNode('535','Antibiotic resistant infections ',ssUrlPrefix + 'Depts/Health/Antibioticresistantinfections/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_7=g_navNode_7_11.addNode('539','Complaints or questions',ssUrlPrefix + 'Depts/Health/Complaintsorquestions/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_8=g_navNode_7_11.addNode('542','Air Quality Construction Permits',ssUrlPrefix + 'Depts/Health/AirQualityConstructionPermits/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_9=g_navNode_7_11.addNode('543','Dust',ssUrlPrefix + 'Depts/Health/Dust/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_10=g_navNode_7_11.addNode('545','Open Burning Permits',ssUrlPrefix + 'Depts/Health/OpenBurningPermits/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_11=g_navNode_7_11.addNode('546','Air Quality Ordinance',ssUrlPrefix + 'Depts/Health/AirQualityOrdinance/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_12=g_navNode_7_11.addNode('548','Vapor Recovery',ssUrlPrefix + 'Depts/Health/VaporRecovery/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_13=g_navNode_7_11.addNode('549','Asbestos ',ssUrlPrefix + 'Depts/Health/Asbestos/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_14=g_navNode_7_11.addNode('550','Bacterial Meningitis',ssUrlPrefix + 'Depts/Health/BacterialMeningitis/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_15=g_navNode_7_11.addNode('551','Bats and rabies',ssUrlPrefix + 'Depts/Health/Batsandrabies/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_16=g_navNode_7_11.addNode('553','Birth \x26 Death Certificates',ssUrlPrefix + 'Depts/Health/BirthDeathCertificates/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_17=g_navNode_7_11.addNode('554','Blood lead tests',ssUrlPrefix + 'Depts/Health/Bloodleadtests/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_18=g_navNode_7_11.addNode('556','Boil Water Orders and Advisories FAQ',ssUrlPrefix + 'Depts/Health/BoilWaterOrdersandAdvisoriesFAQ/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_19=g_navNode_7_11.addNode('559','Botulism FAQ',ssUrlPrefix + 'Depts/Health/BotulismFAQ/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_20=g_navNode_7_11.addNode('560','Continuous Chest Compression CPR',ssUrlPrefix + 'Depts/Health/ContinuousChestCompressionCPR/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_21=g_navNode_7_11.addNode('561','CDCynergy Health Communication Planning Model',ssUrlPrefix + 'Depts/Health/CDCynergyHealthCommunicationPlanningModel/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_22=g_navNode_7_11.addNode('562','Communicable Disease Annual Reports',ssUrlPrefix + 'Depts/Health/CommunicableDiseaseAnnualReports/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_23=g_navNode_7_11.addNode('572','Community Health Improvement Plan \x28Draft\x29 comment form',ssUrlPrefix + 'Depts/Health/CommunityHealthImprovementPlanDraftcommentform/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_24=g_navNode_7_11.addNode('576','Community Initiative on Depression',ssUrlPrefix + 'Depts/Health/CommunityInitiativeonDepression/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_25=g_navNode_7_11.addNode('578','Other City assistance programs',ssUrlPrefix + 'Depts/Health/OtherCityassistanceprograms/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_26=g_navNode_7_11.addNode('580','Clay 01 Zone',ssUrlPrefix + 'Depts/Health/Clay01Zone/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_27=g_navNode_7_11.addNode('581','Clay 02 Zone',ssUrlPrefix + 'Depts/Health/Clay02Zone/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_28=g_navNode_7_11.addNode('584','Clinic services',ssUrlPrefix + 'Depts/Health/Clinicservices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_29=g_navNode_7_11.addNode('585','Childhood Lead Poisoning Prevention Program',ssUrlPrefix + 'Depts/Health/ChildhoodLeadPoisoningPreventionProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_30=g_navNode_7_11.addNode('586','Public Health Code of Ethics',ssUrlPrefix + 'Depts/Health/PublicHealthCodeofEthics/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_31=g_navNode_7_11.addNode('587','Carbon Monoxide frequently asked questions',ssUrlPrefix + 'Depts/Health/CarbonMonoxidefrequentlyaskedquestions/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_32=g_navNode_7_11.addNode('588','Cold Weather Fact Sheets',ssUrlPrefix + 'Depts/Health/ColdWeatherFactSheets/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_33=g_navNode_7_11.addNode('589','Kansas City Transitional Grant Area \x28TGA\x29 Comprehensive HIV Prevention and Care Planning Council',ssUrlPrefix + 'Depts/Health/KansasCityTransitionalGrantAreaTGAComprehensiveHIVPreventionandCarePlanningCouncil/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_34=g_navNode_7_11.addNode('590','Kansas City Transitional Grant Area \x28TGA\x29 Comprehensive HIV Prevention and Care Planning Council And Committee Meeting Minutes',ssUrlPrefix + 'Depts/Health/KansasCityTransitionalGrantAreaTGAComprehensiveHIVPreventionandCarePlanningCouncilAndCommitteeMeetingMinutes/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_35=g_navNode_7_11.addNode('591','Division of Communicable Disease Prevention and Public Health Preparedness',ssUrlPrefix + 'Depts/Health/DivisionofCommunicableDiseasePreventionandPublicHealthPreparedness/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_36=g_navNode_7_11.addNode('592','How to file a complaint in Kansas City, Mo.',ssUrlPrefix + 'Depts/Health/HowtofileacomplaintinKansasCityMo./index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_37=g_navNode_7_11.addNode('593','Contact Information',ssUrlPrefix + 'Depts/Health/ContactInformation/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_38=g_navNode_7_11.addNode('597','Health Department online requests for proposals \x28RFP\x29 and bid opportunities',ssUrlPrefix + 'Depts/Health/HealthDepartmentonlinerequestsforproposalsRFPandbidopportunities/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_39=g_navNode_7_11.addNode('664','What\'s new at the Health Department?',ssUrlPrefix + 'Depts/Health/WhatsnewattheHealthDepartment/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_40=g_navNode_7_11.addNode('669','Department annual reports archive',ssUrlPrefix + 'Depts/Health/Departmentannualreportsarchive/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_41=g_navNode_7_11.addNode('679','Divisions and Programs',ssUrlPrefix + 'Depts/Health/DivisionsandPrograms/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_42=g_navNode_7_11.addNode('692','Health Commission descriptive overview',ssUrlPrefix + 'Depts/Health/HealthCommissiondescriptiveoverview/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_43=g_navNode_7_11.addNode('705','Ebola FAQ',ssUrlPrefix + 'Depts/Health/EbolaFAQ/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_44=g_navNode_7_11.addNode('707','Air Quality Program Enforcement Section',ssUrlPrefix + 'Depts/Health/AirQualityProgramEnforcementSection/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_45=g_navNode_7_11.addNode('712','Available Fact Sheets',ssUrlPrefix + 'Depts/Health/AvailableFactSheets/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_45_0=g_navNode_7_11_45.addNode('2907','Pertussis or Whooping Cough',ssUrlPrefix + 'Depts/Health/AvailableFactSheets/PertussisorWhoopingCough/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business');
g_navNode_7_11_46=g_navNode_7_11.addNode('714','Frequently Asked Questions',ssUrlPrefix + 'Depts/Health/FrequentlyAskedQuestions/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_49=g_navNode_7_11.addNode('720','Fireworks Safety',ssUrlPrefix + 'Depts/Health/FireworksSafety/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_50=g_navNode_7_11.addNode('728','Flood safety',ssUrlPrefix + 'Depts/Health/Floodsafety/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_51=g_navNode_7_11.addNode('729','Influenza \x28flu\x29 information gateway',ssUrlPrefix + 'Depts/Health/Influenzafluinformationgateway/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_52=g_navNode_7_11.addNode('731','General information on influenza or flu',ssUrlPrefix + 'Depts/Health/Generalinformationoninfluenzaorflu/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_53=g_navNode_7_11.addNode('733','Seasonal flu clinics',ssUrlPrefix + 'Depts/Health/Seasonalfluclinics/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_54=g_navNode_7_11.addNode('735','Flu links',ssUrlPrefix + 'Depts/Health/Flulinks/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_55=g_navNode_7_11.addNode('737','Flu myths',ssUrlPrefix + 'Depts/Health/Flumyths/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_56=g_navNode_7_11.addNode('741','Kansas City, Mo., Health Department\'s Pandemic Flu Preparedness Plan',ssUrlPrefix + 'Depts/Health/KansasCityMo.HealthDepartmentsPandemicFluPreparednessPlan/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_57=g_navNode_7_11.addNode('748','Flu Shot Frequently Asked Questions \x28FAQ\x29',ssUrlPrefix + 'Depts/Health/FluShotFrequentlyAskedQuestionsFAQ/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_58=g_navNode_7_11.addNode('750','Pandemic influenza supply kit',ssUrlPrefix + 'Depts/Health/Pandemicinfluenzasupplykit/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_59=g_navNode_7_11.addNode('751','Food Protection Program',ssUrlPrefix + 'Depts/Health/FoodProtectionProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_59_0=g_navNode_7_11_59.addNode('2745','Food Advisory Board',ssUrlPrefix + 'Depts/Health/FoodProtectionProgram/FoodAdvisoryBoard/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_62=g_navNode_7_11.addNode('755','Inspections for truck wrecks, fires and natural disasters involving food',ssUrlPrefix + 'Depts/Health/Inspectionsfortruckwrecksfiresandnaturaldisastersinvolvingfood/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_72=g_navNode_7_11.addNode('886','Plan review inspections',ssUrlPrefix + 'Depts/Health/Planreviewinspections/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_77=g_navNode_7_11.addNode('897','Frostbite frequently asked questions',ssUrlPrefix + 'Depts/Health/Frostbitefrequentlyaskedquestions/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_78=g_navNode_7_11.addNode('903','Environmentally-friendly or \"green\" health services',ssUrlPrefix + 'Depts/Health/Environmentally-friendlyorgreenhealthservices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_79=g_navNode_7_11.addNode('908','Health Alert Network',ssUrlPrefix + 'Depts/Health/HealthAlertNetwork/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_81=g_navNode_7_11.addNode('935','Notice of Privacy Practices',ssUrlPrefix + 'Depts/Health/NoticeofPrivacyPractices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_82=g_navNode_7_11.addNode('950','Health Literacy Initiative',ssUrlPrefix + 'Depts/Health/HealthLiteracyInitiative/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_83=g_navNode_7_11.addNode('957','Directions to the Health Department',ssUrlPrefix + 'Depts/Health/DirectionstotheHealthDepartment/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_84=g_navNode_7_11.addNode('973','Healthy homes',ssUrlPrefix + 'Depts/Health/Healthyhomes/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_85=g_navNode_7_11.addNode('979','\"The Healthy Reader\" program',ssUrlPrefix + 'Depts/Health/TheHealthyReaderprogram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_86=g_navNode_7_11.addNode('984','Healthy Kansas City Zones',ssUrlPrefix + 'Depts/Health/HealthyKansasCityZones/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_90=g_navNode_7_11.addNode('1009','The HIV Services Program',ssUrlPrefix + 'Depts/Health/TheHIVServicesProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_95=g_navNode_7_11.addNode('1091','HPV vaccine',ssUrlPrefix + 'Depts/Health/HPVvaccine/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_98=g_navNode_7_11.addNode('1101','Immunization Services and Schedules',ssUrlPrefix + 'Depts/Health/ImmunizationServicesandSchedules/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_100=g_navNode_7_11.addNode('1107','Injury prevention',ssUrlPrefix + 'Depts/Health/Injuryprevention/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_117=g_navNode_7_11.addNode('1160','Lead ordinance',ssUrlPrefix + 'Depts/Health/Leadordinance/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_118=g_navNode_7_11.addNode('1162','Other lead services',ssUrlPrefix + 'Depts/Health/Otherleadservices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_119=g_navNode_7_11.addNode('1166','Lead poisoned child services',ssUrlPrefix + 'Depts/Health/Leadpoisonedchildservices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_120=g_navNode_7_11.addNode('1168','Other lead services',ssUrlPrefix + 'Depts/Health/Otherleadservices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_121=g_navNode_7_11.addNode('1170','Lead hazard risk assessments',ssUrlPrefix + 'Depts/Health/Leadhazardriskassessments/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_122=g_navNode_7_11.addNode('1173','Marburg hemorrhagic fever FAQ',ssUrlPrefix + 'Depts/Health/MarburghemorrhagicfeverFAQ/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_123=g_navNode_7_11.addNode('1176','Molds',ssUrlPrefix + 'Depts/Health/Molds/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_124=g_navNode_7_11.addNode('1178','MRSA',ssUrlPrefix + 'Depts/Health/MRSA/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_125=g_navNode_7_11.addNode('1181','Mumps',ssUrlPrefix + 'Depts/Health/Mumps/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_126=g_navNode_7_11.addNode('1183','National Ambient Air Quality Standards',ssUrlPrefix + 'Depts/Health/NationalAmbientAirQualityStandards/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Busienss','SectionNameURL==Business');
g_navNode_7_11_127=g_navNode_7_11.addNode('1185','Noise ordinance permits and complaints',ssUrlPrefix + 'Depts/Health/Noiseordinancepermitsandcomplaints/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_128=g_navNode_7_11.addNode('1188','Kansas City, Mo.\'s noise ordinance',ssUrlPrefix + 'Depts/Health/KansasCityMo.snoiseordinance/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_129=g_navNode_7_11.addNode('1194','Lead Ordinance',ssUrlPrefix + 'Depts/Health/LeadOrdinance/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_130=g_navNode_7_11.addNode('1196','Outdoor safety in extreme cold',ssUrlPrefix + 'Depts/Health/Outdoorsafetyinextremecold/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_131=g_navNode_7_11.addNode('1198','Public Health Ambassadors',ssUrlPrefix + 'Depts/Health/PublicHealthAmbassadors/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_132=g_navNode_7_11.addNode('1200','Public Health Emergency Preparedness',ssUrlPrefix + 'Depts/Health/PublicHealthEmergencyPreparedness/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_133=g_navNode_7_11.addNode('1203','Public Health Education and Health Communication',ssUrlPrefix + 'Depts/Health/PublicHealthEducationandHealthCommunication/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_134=g_navNode_7_11.addNode('1207','Plague FAQ',ssUrlPrefix + 'Depts/Health/PlagueFAQ/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_135=g_navNode_7_11.addNode('1209','Platte Zone',ssUrlPrefix + 'Depts/Health/PlatteZone/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_136=g_navNode_7_11.addNode('1211','Pool Opening Checklist',ssUrlPrefix + 'Depts/Health/PoolOpeningChecklist/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css\x5d','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_137=g_navNode_7_11.addNode('1214','Pool, hot tub and spa inspections',ssUrlPrefix + 'Depts/Health/Poolhottubandspainspections/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_138=g_navNode_7_11.addNode('1215','Medical publications',ssUrlPrefix + 'Depts/Health/Medicalpublications/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_139=g_navNode_7_11.addNode('1218','Newsletters and Other Publications',ssUrlPrefix + 'Depts/Health/NewslettersandOtherPublications/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_140=g_navNode_7_11.addNode('1220','PULSE',ssUrlPrefix + 'Depts/Health/PULSE/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_141=g_navNode_7_11.addNode('1221','Rabies Manual',ssUrlPrefix + 'Depts/Health/RabiesManual/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_142=g_navNode_7_11.addNode('1225','Rat Facts',ssUrlPrefix + 'Depts/Health/RatFacts/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_143=g_navNode_7_11.addNode('1227','Safety Street',ssUrlPrefix + 'Depts/Health/SafetyStreet/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_144=g_navNode_7_11.addNode('1229','Safety Street reservation or information request form',ssUrlPrefix + 'Depts/Health/SafetyStreetForm/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_145=g_navNode_7_11.addNode('1233','Help us help you',ssUrlPrefix + 'Depts/Health/Helpushelpyou/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_146=g_navNode_7_11.addNode('1235','Sickle Cell Trait and Anemia',ssUrlPrefix + 'Depts/Health/SickleCellTraitandAnemia/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_147=g_navNode_7_11.addNode('1237','Kansas City, Mo., Smoking Ordinance',ssUrlPrefix + 'Depts/Health/KansasCityMo.SmokingOrdinance/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_148=g_navNode_7_11.addNode('1239','Smoke School/Events',ssUrlPrefix + 'Depts/Health/SmokeSchoolEvents/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_149=g_navNode_7_11.addNode('1243','Smoking Ordinance Text',ssUrlPrefix + 'Depts/Health/SmokingOrdinanceText/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_150=g_navNode_7_11.addNode('1245','Kansas City, Mo., smoking survey results',ssUrlPrefix + 'Depts/Health/KansasCityMo.smokingsurveyresults/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_151=g_navNode_7_11.addNode('1247','Smallpox',ssUrlPrefix + 'Depts/Health/Smallpox/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_152=g_navNode_7_11.addNode('1248','Sexually Transmitted Disease \x28STD\x29 clinic',ssUrlPrefix + 'Depts/Health/SexuallyTransmittedDiseaseSTDclinic/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_153=g_navNode_7_11.addNode('1249','Stop the spread of germs at work',ssUrlPrefix + 'Depts/Health/Stopthespreadofgermsatwork/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_154=g_navNode_7_11.addNode('1250','Tuberculosis \x28TB\x29 clinic',ssUrlPrefix + 'Depts/Health/TuberculosisTBclinic/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_155=g_navNode_7_11.addNode('1252','Tetanus',ssUrlPrefix + 'Depts/Health/Tetanus/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_156=g_navNode_7_11.addNode('1253','Tobacco Use Prevention Program',ssUrlPrefix + 'Depts/Health/TobaccoUsePreventionProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_157=g_navNode_7_11.addNode('1255','What is Healthy People 2010?',ssUrlPrefix + 'Depts/Health/WhatisHealthyPeople2010/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_158=g_navNode_7_11.addNode('1256','Women, Infants and Children \x28WIC\x29 program',ssUrlPrefix + 'Depts/Health/WomenInfantsandChildrenWICprogram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_159=g_navNode_7_11.addNode('1257','Winter injury prevention tips',ssUrlPrefix + 'Depts/Health/Winterinjurypreventiontips/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_160=g_navNode_7_11.addNode('1258','Winter power outage tips',ssUrlPrefix + 'Depts/Health/Winterpoweroutagetips/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_161=g_navNode_7_11.addNode('1259','West Nile virus',ssUrlPrefix + 'Depts/Health/WestNilevirus/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_162=g_navNode_7_11.addNode('1260','Walkers On Watch Manual',ssUrlPrefix + 'Depts/Health/WalkersOnWatchManual/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_163=g_navNode_7_11.addNode('1262','Environmental Health Programs',ssUrlPrefix + 'Depts/Health/EnvironmentalHealthPrograms/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_164=g_navNode_7_11.addNode('1264','Ten Essential Public Health Services',ssUrlPrefix + 'Depts/Health/TenEssentialPublicHealthServices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_165=g_navNode_7_11.addNode('1265','Tobacco Use Prevention Program',ssUrlPrefix + 'Depts/Health/TobaccoUsePreventionProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_166=g_navNode_7_11.addNode('2221','Food handler on-line training',ssUrlPrefix + 'Depts/Health/Foodhandleron-linetraining/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_167=g_navNode_7_11.addNode('2317','Food Inspection frequently asked questions',ssUrlPrefix + 'Depts/Health/FoodInspectionfrequentlyaskedquestions/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_168=g_navNode_7_11.addNode('2318','H1N1 vaccine frequently asked questions',ssUrlPrefix + 'Depts/Health/H1N1vaccinefrequentlyaskedquestions/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_169=g_navNode_7_11.addNode('2319','Community Environmental Health',ssUrlPrefix + 'Depts/Health/CommunityEnvironmentalHealth/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_170=g_navNode_7_11.addNode('2320','Health Education and Health Communications',ssUrlPrefix + 'Depts/Health/HealthEducationandHealthCommunications/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_171=g_navNode_7_11.addNode('2321','Current Air Quality fee schedule',ssUrlPrefix + 'Depts/Health/CurrentAirQualityfeeschedule/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_11_172=g_navNode_7_11.addNode('2322','Food Handler ID card',ssUrlPrefix + 'Depts/Health/FoodHandlerIDcard/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_12=g_navNode_7.addNode('139','Housing',ssUrlPrefix + 'Depts/Housing/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_12_1=g_navNode_7_12.addNode('365','Property Preservation Division',ssUrlPrefix + 'Depts/Housing/PropertyPreservationDivision/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_12_1_0=g_navNode_7_12_1.addNode('1901','Minor Home Repair Program',ssUrlPrefix + 'Depts/Housing/PropertyPreservationDivision/MinorHomeRepairProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_12_2=g_navNode_7_12.addNode('366','Home Weatherization Program ',ssUrlPrefix + 'Depts/Housing/HomeWeatherizationProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_12_3=g_navNode_7_12.addNode('367','Emergency Home Repair Program ',ssUrlPrefix + 'Depts/Housing/EmergencyHomeRepairProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_12_4=g_navNode_7_12.addNode('368','Paint Program ',ssUrlPrefix + 'Depts/Housing/PaintProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_12_5=g_navNode_7_12.addNode('370','Information for contractors',ssUrlPrefix + 'Depts/Housing/Informationforcontractors/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_12_6=g_navNode_7_12.addNode('371','Low Income Housing Tax Credit Prioritization Process',ssUrlPrefix + 'Depts/Housing/LowIncomeHousingTaxCreditPrioritizationProcess/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_12_7=g_navNode_7_12.addNode('373','Kansas City Dream Home Program ',ssUrlPrefix + 'Depts/Housing/KansasCityDreamHomeProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_13=g_navNode_7.addNode('HumanRelations','Human Relations',ssUrlPrefix + 'Depts/HumanRelations/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business');
g_navNode_7_14=g_navNode_7.addNode('140','Human Resources',ssUrlPrefix + 'Depts/HumanResources/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_0=g_navNode_7_14.addNode('538','Human Resources Academy',ssUrlPrefix + 'Depts/HumanResources/HumanResourcesAcademy/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_1=g_navNode_7_14.addNode('341','Tuition Assistance Program ',ssUrlPrefix + 'Depts/HumanResources/TuitionAssistanceProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_2=g_navNode_7_14.addNode('342','Fitness Source Downtown Fitness Facility ',ssUrlPrefix + 'Depts/HumanResources/FitnessSourceDowntownFitnessFacility/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_3=g_navNode_7_14.addNode('343','Equipment Available at FitnessSource ',ssUrlPrefix + 'Depts/HumanResources/EquipmentAvailableatFitnessSource/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_4=g_navNode_7_14.addNode('344','Exercise Program ',ssUrlPrefix + 'Depts/HumanResources/ExerciseProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_5=g_navNode_7_14.addNode('345','Massage Therapy ',ssUrlPrefix + 'Depts/HumanResources/MassageTherapy/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_6=g_navNode_7_14.addNode('346','Personal Training ',ssUrlPrefix + 'Depts/HumanResources/PersonalTraining/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_7=g_navNode_7_14.addNode('347','Fitness Source Specialty Classes ',ssUrlPrefix + 'Depts/HumanResources/FitnessSourceSpecialtyClasses/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_8=g_navNode_7_14.addNode('348','Fitness Source Weight 4 Me Program',ssUrlPrefix + 'Depts/HumanResources/FitnessSourceWeight4MeProgram/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_9=g_navNode_7_14.addNode('349','City Job Opportunities ',ssUrlPrefix + 'Depts/HumanResources/CityJobOpportunities/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_10=g_navNode_7_14.addNode('350','Deferred Compensation Plan ',ssUrlPrefix + 'Depts/HumanResources/DeferredCompensationPlan/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_11=g_navNode_7_14.addNode('351','Frequently Asked Questions',ssUrlPrefix + 'Depts/HumanResources/FrequentlyAskedQuestions/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_12=g_navNode_7_14.addNode('352','Retirement Forms ',ssUrlPrefix + 'Depts/HumanResources/RetirementForms/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_13=g_navNode_7_14.addNode('353','Retiree Information',ssUrlPrefix + 'Depts/HumanResources/RetireeInformation/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_14=g_navNode_7_14.addNode('354','Retiree Insurance Plans',ssUrlPrefix + 'Depts/HumanResources/InsurancePlans/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_14_15=g_navNode_7_14.addNode('355','Retiree Contact Information ',ssUrlPrefix + 'Depts/HumanResources/RetireeContactInformation/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_15=g_navNode_7.addNode('143','Information Technology',ssUrlPrefix + 'Depts/InformationTechnology/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_15_7=g_navNode_7_15.addNode('OtherGovernmentLinks','Other Government Links',ssUrlPrefix + 'Depts/InformationTechnology/OtherGovernmentLinks/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_15_10=g_navNode_7_15.addNode('EmployeeSelf-Service1','Employee Self-Service',ssUrlPrefix + 'Depts/InformationTechnology/EmployeeSelf-Service1/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_16=g_navNode_7.addNode('144','Law',ssUrlPrefix + 'Depts/Law/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business','secondaryUrlVariableField==region1');
g_navNode_7_17=g_navNode_7.addNode('145','Municipal Court',ssUrlPrefix + 'Depts/MunicipalCourt/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_18=g_navNode_7.addNode('146','Neighborhood and Community Services',ssUrlPrefix + 'Depts/NeighborhoodAndCommunityServices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_19=g_navNode_7.addNode('147','Parks and Recreation',ssUrlPrefix + 'Depts/ParksandRecreation/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_20=g_navNode_7.addNode('149','Public Works',ssUrlPrefix + 'Depts/PublicWorks/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_20_57=g_navNode_7_20.addNode('2366','Bicycle Pedestrian Projects and Programs',ssUrlPrefix + 'Depts/PublicWorks/BicyclePedestrianProjectsandPrograms/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_20_57_2=g_navNode_7_20_57.addNode('421','BikeKC',ssUrlPrefix + 'Depts/PublicWorks/BicyclePedestrianProjectsandPrograms/BikeKC/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_21=g_navNode_7.addNode('150','Water Services',ssUrlPrefix + 'Depts/WaterServices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business','SectionTitle==Business');
g_navNode_7_21_0=g_navNode_7_21.addNode('2637','Bill pay options',ssUrlPrefix + 'Depts/WaterServices/Billpayoptions/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_21_2=g_navNode_7_21.addNode('LinksinWaterServices','Informational Links in Water Services',ssUrlPrefix + 'Depts/WaterServices/InformationalLinksinWaterServices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_21_3=g_navNode_7_21.addNode('WWSPProgramHome','Wet Weather Solutions Program Home',ssUrlPrefix + 'Depts/WaterServices/WetWeatherSolutionsProgramHome/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_21_23=g_navNode_7_21.addNode('BackflowResourceCenter','Backflow Resource Center',ssUrlPrefix + 'Depts/WaterServices/BackflowResourceCenter/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_21_47=g_navNode_7_21.addNode('FAQsWaterServices','Frequently Asked Questions about Water Services',ssUrlPrefix + 'Depts/WaterServices/FrequentlyAskedQuestionsaboutWaterServices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_21_49=g_navNode_7_21.addNode('wwFloodingInformation','Flooding Information',ssUrlPrefix + 'Depts/WaterServices/FloodingInformation/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_21_84=g_navNode_7_21.addNode('1724','Household Hazardous Waste',ssUrlPrefix + 'Depts/WaterServices/Hazardous/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_21_85=g_navNode_7_21.addNode('1725','\u201cThe WAVE\u201d rolls on',ssUrlPrefix + 'Depts/WaterServices/TheWAVErollson/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_21_109=g_navNode_7_21.addNode('1778','Water Rates',ssUrlPrefix + 'Depts/WaterServices/WaterRates/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_21_121=g_navNode_7_21.addNode('1818','Target Green',ssUrlPrefix + 'Depts/WaterServices/TargetGreen/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_21_127=g_navNode_7_21.addNode('1837','Who to call for water issues',ssUrlPrefix + 'Depts/WaterServices/Whotocallforwaterissues/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business');
g_navNode_7_21_133=g_navNode_7_21.addNode('2602','Blue River Basin',ssUrlPrefix + 'Depts/WaterServices/BlueRiverBasin/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');
g_navNode_7_21_134=g_navNode_7_21.addNode('2822','Customer Services',ssUrlPrefix + 'Depts/WaterServices/CustomerServices/index.htm','SectionCSS==/idc/groups/public/documents/ckcmowebassets/kcmo_business_css.css','SectionName==Business','SectionNameURL==Business');

