/////////////////////////////////////////////////////////////////////////////
// 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 attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		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 attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		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('1201','FDA Home',ssUrlPrefix + 'index.htm',null,'cspCheckinDisplay==Homepage','cspSectionApproverAlias==fdagov-appr-homepage','cspSectionMainQuery==xSubType \x3cmatches\x3e \x60Press Release\x60','secondaryUrlVariableField==region1');
g_navNode_0=g_navNode_Root.addNode('1335','Food',ssUrlPrefix + 'Food/default.htm','cspSectionApproverAlias==fdagov-appr-food, fdagov-appr-oerwebteam','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_0=g_navNode_0.addNode('2898','Biotechnology',ssUrlPrefix + 'Food/Biotechnology/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-bio','secondaryUrlVariableField==region1');
g_navNode_0_0_0=g_navNode_0_0.addNode('2929','Announcements',ssUrlPrefix + 'Food/Biotechnology/Announcements/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-bio','secondaryUrlVariableField==region1');
g_navNode_0_0_1=g_navNode_0_0.addNode('2930','Presentations \x26 Testimony',ssUrlPrefix + 'Food/Biotechnology/PresentationsTestimony/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-bio','secondaryUrlVariableField==region1');
g_navNode_0_0_2=g_navNode_0_0.addNode('3758','Submissions',ssUrlPrefix + 'Food/Biotechnology/Submissions/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-bio','secondaryUrlVariableField==region1');
g_navNode_0_1=g_navNode_0.addNode('2899','Dietary Supplements',ssUrlPrefix + 'Food/DietarySupplements/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_1_0=g_navNode_0_1.addNode('2931','Consumer Information',ssUrlPrefix + 'Food/DietarySupplements/ConsumerInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_1_1=g_navNode_0_1.addNode('2932','Alerts',ssUrlPrefix + 'Food/DietarySupplements/Alerts/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_1_2=g_navNode_0_1.addNode('2933','Guidance, Compliance \x26 Regulatory Information',ssUrlPrefix + 'Food/DietarySupplements/GuidanceComplianceRegulatoryInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_1_2_0=g_navNode_0_1_2.addNode('2934','Regulations \x26 Laws',ssUrlPrefix + 'Food/DietarySupplements/GuidanceComplianceRegulatoryInformation/RegulationsLaws/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_1_3=g_navNode_0_1.addNode('2935','New Dietary Ingredients Notification Process',ssUrlPrefix + 'Food/DietarySupplements/NewDietaryIngredientsNotificationProcess/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_1_3_0=g_navNode_0_1_3.addNode('2936','How to Submit Notifications',ssUrlPrefix + 'Food/DietarySupplements/NewDietaryIngredientsNotificationProcess/HowtoSubmitNotifications/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_1_4=g_navNode_0_1.addNode('2937','Dietary Supplement Labeling',ssUrlPrefix + 'Food/DietarySupplements/DietarySupplementLabeling/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_1_5=g_navNode_0_1.addNode('2938','Imports \x26 Exports',ssUrlPrefix + 'Food/DietarySupplements/ImportsExports/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_1_6=g_navNode_0_1.addNode('2939','Reports, Meetings \x26 Presentations',ssUrlPrefix + 'Food/DietarySupplements/ReportsMeetingsPresentations/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_1_6_0=g_navNode_0_1_6.addNode('2940','Reports',ssUrlPrefix + 'Food/DietarySupplements/ReportsMeetingsPresentations/Reports/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2=g_navNode_0.addNode('2901','Food Defense \x26 Emergency Response',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_0=g_navNode_0_2.addNode('2951','Food Defense Programs',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/FoodDefensePrograms/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_0_0=g_navNode_0_2_0.addNode('2966','Food Defense Research Reports',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/FoodDefensePrograms/FoodDefenseResearchReports/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_1=g_navNode_0_2.addNode('2952','Bioterrorism Requirements',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/BioterrorismRequirements/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_1_0=g_navNode_0_2_1.addNode('2967','Food Facility Registration',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/BioterrorismRequirements/FoodFacilityRegistration/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_1_1=g_navNode_0_2_1.addNode('3622','Prior Notice',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/BioterrorismRequirements/PriorNotice/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_1_2=g_navNode_0_2_1.addNode('2968','Administrative Detention',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/BioterrorismRequirements/AdministrativeDetention/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_1_3=g_navNode_0_2_1.addNode('2969','Recordkeeping',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/BioterrorismRequirements/Recordkeeping/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_2=g_navNode_0_2.addNode('2953','Regulatory Information ',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/RegulatoryInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_3=g_navNode_0_2.addNode('2954','Food Security Preventative Measures Guidance',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/FoodSecurityPreventativeMeasuresGuidance/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_4=g_navNode_0_2.addNode('2955','CARVER \x2b Shock',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/CARVERShock/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_5=g_navNode_0_2.addNode('2956','Emergencies',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/Emergencies/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_5_0=g_navNode_0_2_5.addNode('2964','Floods, Hurricanes \x26 Power Outages',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/Emergencies/FloodsHurricanesPowerOutages/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_5_1=g_navNode_0_2_5.addNode('2965','Foodborne Illness Outbreaks',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/Emergencies/FoodborneIllnessOutbreaks/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_6=g_navNode_0_2.addNode('2957','Food Tampering',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/FoodTampering/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_7=g_navNode_0_2.addNode('2958','Training',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/Training/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_7_0=g_navNode_0_2_7.addNode('2960','ALERT',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/Training/ALERT/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_7_1=g_navNode_0_2_7.addNode('2961','Workshops \x26 Courses',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/Training/WorkshopsCourses/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_7_2=g_navNode_0_2_7.addNode('2962','Training Materials',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/Training/TrainingMaterials/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_7_3=g_navNode_0_2_7.addNode('2963','Training Videos',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/Training/TrainingVideos/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_2_8=g_navNode_0_2.addNode('2959','Food Defense \x26 Emergency Response Q\x26A',ssUrlPrefix + 'Food/FoodDefenseEmergencyResponse/FoodDefenseEmergencyResponseQA/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_3=g_navNode_0.addNode('2896','Food Ingredients \x26 Packaging',ssUrlPrefix + 'Food/FoodIngredientsPackaging/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-fip','secondaryUrlVariableField==region1');
g_navNode_0_3_0=g_navNode_0_3.addNode('2919','Food Additives',ssUrlPrefix + 'Food/FoodIngredientsPackaging/FoodAdditives/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-fip','secondaryUrlVariableField==region1');
g_navNode_0_3_0_0=g_navNode_0_3_0.addNode('3742','Food Additive Listings',ssUrlPrefix + 'Food/FoodIngredientsPackaging/FoodAdditives/FoodAdditiveListings/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-fip','secondaryUrlVariableField==region1');
g_navNode_0_3_1=g_navNode_0_3.addNode('2920','Generally Recognized as Safe \x28GRAS\x29',ssUrlPrefix + 'Food/FoodIngredientsPackaging/GenerallyRecognizedasSafeGRAS/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-fip','secondaryUrlVariableField==region1');
g_navNode_0_3_1_0=g_navNode_0_3_1.addNode('3744','GRAS Notice Inventory',ssUrlPrefix + 'Food/FoodIngredientsPackaging/GenerallyRecognizedasSafeGRAS/GRASListings/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-fip','secondaryUrlVariableField==region1');
g_navNode_0_3_1_1=g_navNode_0_3_1.addNode('3039','GRAS Notification Program',ssUrlPrefix + 'Food/FoodIngredientsPackaging/GenerallyRecognizedasSafeGRAS/GRASNotificationProgram/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-fip','secondaryUrlVariableField==region1');
g_navNode_0_3_1_2=g_navNode_0_3_1.addNode('3040','GRAS Substances \x28SCOGS\x29 Database',ssUrlPrefix + 'Food/FoodIngredientsPackaging/GenerallyRecognizedasSafeGRAS/GRASSubstancesSCOGSDatabase/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-fip','secondaryUrlVariableField==region1');
g_navNode_0_3_2=g_navNode_0_3.addNode('2921','Food Contact Substances \x28FCS\x29',ssUrlPrefix + 'Food/FoodIngredientsPackaging/FoodContactSubstancesFCS/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-fip','secondaryUrlVariableField==region1');
g_navNode_0_3_2_0=g_navNode_0_3_2.addNode('3041','About the FCS Review Program',ssUrlPrefix + 'Food/FoodIngredientsPackaging/FoodContactSubstancesFCS/AbouttheFCSReviewProgram/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-fip','secondaryUrlVariableField==region1');
g_navNode_0_3_2_1=g_navNode_0_3_2.addNode('3043','CEDI/ADI Database',ssUrlPrefix + 'Food/FoodIngredientsPackaging/FoodContactSubstancesFCS/CEDIADIDatabase/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-fip','secondaryUrlVariableField==region1');
g_navNode_0_3_2_2=g_navNode_0_3_2.addNode('3745','FCS Listings',ssUrlPrefix + 'Food/FoodIngredientsPackaging/FoodContactSubstancesFCS/FCSListings/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','secondaryUrlVariableField==region1');
g_navNode_0_3_3=g_navNode_0_3.addNode('2922','Irradiated Food \x26 Packaging',ssUrlPrefix + 'Food/FoodIngredientsPackaging/IrradiatedFoodPackaging/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-fip','secondaryUrlVariableField==region1');
g_navNode_0_3_3_0=g_navNode_0_3_3.addNode('3045','Consumer Information',ssUrlPrefix + 'Food/FoodIngredientsPackaging/IrradiatedFoodPackaging/ConsumerInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-fip','secondaryUrlVariableField==region1');
g_navNode_0_3_4=g_navNode_0_3.addNode('3746','Interagency Agreements',ssUrlPrefix + 'Food/FoodIngredientsPackaging/InteragencyAgreements/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','secondaryUrlVariableField==region1');
g_navNode_0_3_5=g_navNode_0_3.addNode('3887','Environmental Decisions',ssUrlPrefix + 'Food/FoodIngredientsPackaging/EnvironmentalDecisions/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','secondaryUrlVariableField==region1');
g_navNode_0_4=g_navNode_0.addNode('2894','Food Safety',ssUrlPrefix + 'Food/FoodSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-fs, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_0=g_navNode_0_4.addNode('2905','Food Safety Programs',ssUrlPrefix + 'Food/FoodSafety/FoodSafetyPrograms/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-fs, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_0_0=g_navNode_0_4_0.addNode('3064','Action Plans',ssUrlPrefix + 'Food/FoodSafety/FoodSafetyPrograms/ActionPlans/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-fs, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_0_0_0=g_navNode_0_4_0_0.addNode('3066','Listeria monocytogenes Action Plan',ssUrlPrefix + 'Food/FoodSafety/FoodSafetyPrograms/ActionPlans/ListeriamoncytogenesActionPlan/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_0_1=g_navNode_0_4_0.addNode('3065','Food Safety Education',ssUrlPrefix + 'Food/FoodSafety/FoodSafetyPrograms/FoodSafetyEducation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1=g_navNode_0_4.addNode('2906','Product-Specific Information',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-fs, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_0=g_navNode_0_4_1.addNode('3067','Acidified \x26 Low-Acid Canned Foods',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/AcidifiedLow-AcidCannedFoods/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_0_0=g_navNode_0_4_1_0.addNode('3075','Regulations',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/AcidifiedLow-AcidCannedFoods/Regulations/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_0_1=g_navNode_0_4_1_0.addNode('3076','Guidance \x26 Compliance',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/AcidifiedLow-AcidCannedFoods/GuidanceCompliance/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_0_2=g_navNode_0_4_1_0.addNode('3077','Aseptic Filler Validation',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/AcidifiedLow-AcidCannedFoods/AsepticFillerValidation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_0_3=g_navNode_0_4_1_0.addNode('3514','Establishment Registration \x26 Thermal Process Filing',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/AcidifiedLow-AcidCannedFoods/EstablishmentRegistrationThermalProcessFiling/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_0_3_0=g_navNode_0_4_1_0_3.addNode('3518','Instructions',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/AcidifiedLow-AcidCannedFoods/EstablishmentRegistrationThermalProcessFiling/Instructions/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_0_3_1=g_navNode_0_4_1_0_3.addNode('3519','Electronic Submissions',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/AcidifiedLow-AcidCannedFoods/EstablishmentRegistrationThermalProcessFiling/ElectronicSubmissions/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_0_3_2=g_navNode_0_4_1_0_3.addNode('3520','Aseptic Packaging System Supplement',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/AcidifiedLow-AcidCannedFoods/EstablishmentRegistrationThermalProcessFiling/AsepticPackagingSystemSupplement/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_1=g_navNode_0_4_1.addNode('3068','Bottled Water \x26 Carbonated Soft Drinks',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/BottledWaterCarbonatedSoftDrinks/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_2=g_navNode_0_4_1.addNode('3687','Cheese Safety',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/CheeseSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_2_0=g_navNode_0_4_1_2.addNode('3707','Consumer Information About Cheese Safety',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/CheeseSafety/ConsumerInformationAboutCheeseSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_3=g_navNode_0_4_1.addNode('3689','Egg Safety',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/EggSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_3_0=g_navNode_0_4_1_3.addNode('3690','Consumer Information About Egg Safety',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/EggSafety/ConsumerInformationAboutEggSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_3_1=g_navNode_0_4_1_3.addNode('3691','Egg Safety Action Plan',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/EggSafety/EggSafetyActionPlan/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_4=g_navNode_0_4_1.addNode('3070','Fruits, Vegetables \x26 Juices',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/FruitsVegetablesJuices/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_4_0=g_navNode_0_4_1_4.addNode('3086','Consumer Information About Fruits, Vegetables, and Juices',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/FruitsVegetablesJuices/ConsumerInformationAboutFruitsVegetablesandJuices/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_4_1=g_navNode_0_4_1_4.addNode('3087','FDA Produce Safety Activities',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/FruitsVegetablesJuices/FDAProduceSafetyActivities/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_4_1_0=g_navNode_0_4_1_4_1.addNode('3089','Produce Safety Action Plan',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/FruitsVegetablesJuices/FDAProduceSafetyActivities/ProduceSafetyActionPlan/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_4_2=g_navNode_0_4_1_4.addNode('3088','Guidance, Compliance \x26 Regulatory Information',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/FruitsVegetablesJuices/GuidanceComplianceRegulatoryInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_5=g_navNode_0_4_1.addNode('3071','Infant Formula',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/InfantFormula/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_5_0=g_navNode_0_4_1_5.addNode('3090','Consumer Information About Infant Formula',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/InfantFormula/ConsumerInformationAboutInfantFormula/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_5_1=g_navNode_0_4_1_5.addNode('3091','Alerts \x26 Safety Information',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/InfantFormula/AlertsSafetyInformation/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_5_2=g_navNode_0_4_1_5.addNode('3092','Guidance \x26 Regulatory Information',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/InfantFormula/GuidanceRegulatoryInformation/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_5_2_0=g_navNode_0_4_1_5_2.addNode('3094','Regulations \x26 Federal Register Documents',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/InfantFormula/GuidanceRegulatoryInformation/RegulationsFederalRegisterDocuments/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_5_3=g_navNode_0_4_1_5.addNode('3093','Clinical Studies',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/InfantFormula/ClinicalStudies/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_6=g_navNode_0_4_1.addNode('3072','Medical Foods',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MedicalFoods/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7=g_navNode_0_4_1.addNode('3688','Milk Safety',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_0=g_navNode_0_4_1_7.addNode('3692','Consumer Information About Milk Safety',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/ConsumerInformationAboutMilkSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_1=g_navNode_0_4_1_7.addNode('3693','Federal State Programs',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/FederalStatePrograms/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_1_0=g_navNode_0_4_1_7_1.addNode('3694','Interstate Milk Shippers List',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/FederalStatePrograms/InterstateMilkShippersList/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_2=g_navNode_0_4_1_7.addNode('3695','National Conference on Interstate Milk Shipments \x28NCIMS\x29 Model Documents',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/NationalConferenceonInterstateMilkShipmentsNCIMSModelDocuments/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_2_0=g_navNode_0_4_1_7_2.addNode('3696','Pasteurized Milk Ordinance 2009',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/NationalConferenceonInterstateMilkShipmentsNCIMSModelDocuments/PasteurizedMilkOrdinance2009/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_2_1=g_navNode_0_4_1_7_2.addNode('3697','Pasteurized Milk Ordinance 2007',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/NationalConferenceonInterstateMilkShipmentsNCIMSModelDocuments/PasteurizedMilkOrdinance2007/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_2_2=g_navNode_0_4_1_7_2.addNode('3698','Pasteurized Milk Ordinance 2005',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/NationalConferenceonInterstateMilkShipmentsNCIMSModelDocuments/PasteurizedMilkOrdinance2005/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_2_3=g_navNode_0_4_1_7_2.addNode('3699','Pasteurized Milk Ordinance 2003',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/NationalConferenceonInterstateMilkShipmentsNCIMSModelDocuments/PasteurizedMilkOrdinance2003/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_2_4=g_navNode_0_4_1_7_2.addNode('3700','Pasteurized Milk Ordinance 2001',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/NationalConferenceonInterstateMilkShipmentsNCIMSModelDocuments/PasteurizedMilkOrdinance2001/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_2_5=g_navNode_0_4_1_7_2.addNode('3701','Pasteurized Milk Ordinance 1999',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/NationalConferenceonInterstateMilkShipmentsNCIMSModelDocuments/PasteurizedMilkOrdinance1999/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_3=g_navNode_0_4_1_7.addNode('3702','Coded Memoranda',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/CodedMemoranda/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_3_0=g_navNode_0_4_1_7_3.addNode('3703','Memoranda of Conference Actions',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/CodedMemoranda/MemorandaofConferenceActions/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_3_1=g_navNode_0_4_1_7_3.addNode('3704','Memoranda of Interpretation',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/CodedMemoranda/MemorandaofInterpretation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_3_2=g_navNode_0_4_1_7_3.addNode('3705','Memoranda of Milk Ordinance ',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/CodedMemoranda/MemorandaofMilkOrdinance/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_3_3=g_navNode_0_4_1_7_3.addNode('3706','Memoranda of Information',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/CodedMemoranda/MemorandaofInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_4=g_navNode_0_4_1_7.addNode('3723','Miscellaneous Milk Safety References',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/MiscellaneousMilkSafetyReferences/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_7_5=g_navNode_0_4_1_7.addNode('3724','Dairy Grade A Voluntary HACCP',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/MilkSafety/DairyGradeAVoluntaryHACCP/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_1_8=g_navNode_0_4_1.addNode('3073','Ready-to-Eat \x28RTE\x29 Foods',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Ready-to-EatRTEFoods/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-fs, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9=g_navNode_0_4_1.addNode('3074','Seafood',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_0=g_navNode_0_4_1_9.addNode('3095','Consumer Information About Seafood',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/ConsumerInformationAboutSeafood/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_1=g_navNode_0_4_1_9.addNode('3096','Seafood Regulatory Program',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/SeafoodRegulatoryProgram/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_2=g_navNode_0_4_1_9.addNode('3097','Federal/State Programs',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/FederalStatePrograms/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_2_0=g_navNode_0_4_1_9_2.addNode('3104','Interstate Shellfish Shippers List',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/FederalStatePrograms/InterstateShellfishShippersList/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_2_1=g_navNode_0_4_1_9_2.addNode('3105','National Shellfish Sanitation Program',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/FederalStatePrograms/NationalShellfishSanitationProgram/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_3=g_navNode_0_4_1_9.addNode('3098','Regulatory Fish Encyclopedia \x28RFE\x29',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/RegulatoryFishEncyclopediaRFE/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_3_0=g_navNode_0_4_1_9_3.addNode('3107','RFE Disclaimer',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/RegulatoryFishEncyclopediaRFE/RFEDisclaimer/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_3_1=g_navNode_0_4_1_9_3.addNode('3108','RFE Contacts',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/RegulatoryFishEncyclopediaRFE/RFEContacts/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_4=g_navNode_0_4_1_9.addNode('3099','Foodborne Pathogens \x26 Contaminants',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/FoodbornePathogensContaminants/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_4_0=g_navNode_0_4_1_9_4.addNode('3109','Methylmercury',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/FoodbornePathogensContaminants/Methylmercury/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_4_1=g_navNode_0_4_1_9_4.addNode('3110','Puffer Fish',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/FoodbornePathogensContaminants/PufferFish/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_4_2=g_navNode_0_4_1_9_4.addNode('3111','Scombrotoxin Poisoning/Decomposition',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/FoodbornePathogensContaminants/ScombrotoxinPoisoningDecomposition/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_4_3=g_navNode_0_4_1_9_4.addNode('3112','Vibrio Vulnificus \x26 Vibrio Parahaemolyticus',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/FoodbornePathogensContaminants/VibrioVulnificusVibrioParahaemolyticus/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_5=g_navNode_0_4_1_9.addNode('3100','Seafood HACCP',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/SeafoodHACCP/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_6=g_navNode_0_4_1_9.addNode('3101','Seafood Fraud',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/SeafoodFraud/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_6_0=g_navNode_0_4_1_9_6.addNode('3103','Catfish Labeling',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/SeafoodFraud/CatfishLabeling/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_1_9_7=g_navNode_0_4_1_9.addNode('3102','Imports \x26 Exports',ssUrlPrefix + 'Food/FoodSafety/Product-SpecificInformation/Seafood/ImportsExports/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_2=g_navNode_0_4.addNode('2907','Food Allergens',ssUrlPrefix + 'Food/FoodSafety/FoodAllergens/default.htm','cspSectionApproverAlias==fdagov-appr-food','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_2_0=g_navNode_0_4_2.addNode('3113','Food Allergies\x3a What You Need to Know',ssUrlPrefix + 'Food/FoodSafety/FoodAllergens/FoodAllergiesWhatYouNeedtoKnow/default.htm','cspSectionApproverAlias==fdagov-appr-food','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_3=g_navNode_0_4.addNode('2908','Foodborne Illness',ssUrlPrefix + 'Food/FoodSafety/FoodborneIllness/default.htm','cspSectionApproverAlias==fdagov-appr-food','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_3_0=g_navNode_0_4_3.addNode('3114','Consumer Information',ssUrlPrefix + 'Food/FoodSafety/FoodborneIllness/ConsumerInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_3_1=g_navNode_0_4_3.addNode('3115','Foodborne Illness, Foodborne Pathogens \x26 Natural Toxins',ssUrlPrefix + 'Food/FoodSafety/FoodborneIllness/FoodborneIllnessFoodbornePathogensNaturalToxins/default.htm','cspSectionApproverAlias==fdagov-appr-food, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_3_1_0=g_navNode_0_4_3_1.addNode('3118','Bad Bug Book',ssUrlPrefix + 'Food/FoodSafety/FoodborneIllness/FoodborneIllnessFoodbornePathogensNaturalToxins/BadBugBook/default.htm','cspSectionApproverAlias==fdagov-appr-food, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_3_2=g_navNode_0_4_3.addNode('3116','Investigation',ssUrlPrefix + 'Food/FoodSafety/FoodborneIllness/Investigation/default.htm','cspSectionApproverAlias==fdagov-appr-food, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_3_3=g_navNode_0_4_3.addNode('3117','Interagency Coordination',ssUrlPrefix + 'Food/FoodSafety/FoodborneIllness/InteragencyCoordination/default.htm','cspSectionApproverAlias==fdagov-appr-food, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_3_3_0=g_navNode_0_4_3_3.addNode('3120','Foodborne Outbreak Response Coordinating Group \x28FORCG\x29',ssUrlPrefix + 'Food/FoodSafety/FoodborneIllness/InteragencyCoordination/FoodborneOutbreakResponseCoordinatingGroupFORCG/default.htm','cspSectionApproverAlias==fdagov-appr-food, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_3_3_1=g_navNode_0_4_3_3.addNode('3121','Federal/State Food Programs',ssUrlPrefix + 'Food/FoodSafety/FoodborneIllness/InteragencyCoordination/FederalStateFoodPrograms/default.htm','cspSectionApproverAlias==fdagov-appr-food, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4=g_navNode_0_4.addNode('2909','Food Contaminants \x26 Adulteration',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_0=g_navNode_0_4_4.addNode('3122','Chemical Contaminants',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/ChemicalContaminants/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_0_0=g_navNode_0_4_4_0.addNode('3127','Acrylamide',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/ChemicalContaminants/Acrylamide/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_0_1=g_navNode_0_4_4_0.addNode('3128','Benzene',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/ChemicalContaminants/Benzene/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_0_2=g_navNode_0_4_4_0.addNode('3129','Dioxins \x26 PCBs',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/ChemicalContaminants/DioxinsPCBs/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_0_3=g_navNode_0_4_4_0.addNode('3130','Ethyl Carbamate \x28Urethane\x29',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/ChemicalContaminants/EthylCarbamateUrethane/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_0_4=g_navNode_0_4_4_0.addNode('3131','Furan',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/ChemicalContaminants/Furan/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_0_5=g_navNode_0_4_4_0.addNode('3132','Nitrofuran',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/ChemicalContaminants/Nitrofuran/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_0_6=g_navNode_0_4_4_0.addNode('3133','Perchlorate',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/ChemicalContaminants/Perchlorate/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_0_7=g_navNode_0_4_4_0.addNode('3134','Radionuclides',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/ChemicalContaminants/Radionuclides/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_1=g_navNode_0_4_4.addNode('3123','Metals',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/Metals/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_1_0=g_navNode_0_4_4_1.addNode('3135','Lead',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/Metals/Lead/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_1_1=g_navNode_0_4_4_1.addNode('3136','Mercury',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/Metals/Mercury/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_2=g_navNode_0_4_4.addNode('3124','Natural Toxins',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/NaturalToxins/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_3=g_navNode_0_4_4.addNode('3125','Pesticides',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/Pesticides/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_3_0=g_navNode_0_4_4_3.addNode('3139','Residue Monitoring Reports',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/Pesticides/ResidueMonitoringReports/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_3_1=g_navNode_0_4_4_3.addNode('3140','Pesticide Analytical Behavior Data',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/Pesticides/PesticideAnalyticalBehaviorData/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_4_4=g_navNode_0_4_4.addNode('3126','Total Diet Study',ssUrlPrefix + 'Food/FoodSafety/FoodContaminantsAdulteration/TotalDietStudy/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_5=g_navNode_0_4.addNode('2910','Hazard Analysis \x26 Critical Control Points \x28HACCP\x29',ssUrlPrefix + 'Food/FoodSafety/HazardAnalysisCriticalControlPointsHACCP/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_5_0=g_navNode_0_4_5.addNode('3141','HACCP Principles \x26 Application Guidelines',ssUrlPrefix + 'Food/FoodSafety/HazardAnalysisCriticalControlPointsHACCP/HACCPPrinciplesApplicationGuidelines/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_5_1=g_navNode_0_4_5.addNode('3142','Dairy Grade A Voluntary HACCP',ssUrlPrefix + 'Food/FoodSafety/HazardAnalysisCriticalControlPointsHACCP/DairyGradeAVoluntaryHACCP/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_5_2=g_navNode_0_4_5.addNode('3143','Juice HACCP',ssUrlPrefix + 'Food/FoodSafety/HazardAnalysisCriticalControlPointsHACCP/JuiceHACCP/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_5_3=g_navNode_0_4_5.addNode('3144','Retail \x26 Food Service HACCP',ssUrlPrefix + 'Food/FoodSafety/HazardAnalysisCriticalControlPointsHACCP/RetailFoodServiceHACCP/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_5_4=g_navNode_0_4_5.addNode('3145','Seafood HACCP',ssUrlPrefix + 'Food/FoodSafety/HazardAnalysisCriticalControlPointsHACCP/SeafoodHACCP/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_5_5=g_navNode_0_4_5.addNode('3146','HACCP Pilot Program for Land Foods',ssUrlPrefix + 'Food/FoodSafety/HazardAnalysisCriticalControlPointsHACCP/HACCPPilotProgramforLandFoods/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_6=g_navNode_0_4.addNode('2911','Retail Food Protection',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_6_0=g_navNode_0_4_6.addNode('3147','Food Code',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/FoodCode/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_6_0_0=g_navNode_0_4_6_0.addNode('3881','Food Code 2005',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/FoodCode/FoodCode2005/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_6_0_1=g_navNode_0_4_6_0.addNode('3882','Food Code 2001',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/FoodCode/FoodCode2001/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_6_1=g_navNode_0_4_6.addNode('3148','Federal/State Cooperative Programs',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/FederalStateCooperativePrograms/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_6_2=g_navNode_0_4_6.addNode('3149','Managing Food Safety\x3a HACCP Principles',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/ManagingFoodSafetyHACCPPrinciples/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_6_2_0=g_navNode_0_4_6_2.addNode('3155','Operators',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/ManagingFoodSafetyHACCPPrinciples/Operators/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_6_2_1=g_navNode_0_4_6_2.addNode('3156','Regulators',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/ManagingFoodSafetyHACCPPrinciples/Regulators/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_6_3=g_navNode_0_4_6.addNode('3150','Inspections \x26 Quality Assurance',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/InspectionsQualityAssurance/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_6_3_0=g_navNode_0_4_6_3.addNode('3154','Standardization',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/InspectionsQualityAssurance/Standardization/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_6_4=g_navNode_0_4_6.addNode('3151','Foodborne Illness and Risk Factor Reduction',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/FoodborneIllnessandRiskFactorReduction/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_6_4_0=g_navNode_0_4_6_4.addNode('3153','Retail Food Risk Factor Studies',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/FoodborneIllnessandRiskFactorReduction/RetailFoodRiskFactorStudies/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_6_5=g_navNode_0_4_6.addNode('3152','Compliance \x26 Enforcement',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/ComplianceEnforcement/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_4_6_6=g_navNode_0_4_6.addNode('3883','Food Defense and Emergency Response',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/FoodDefenseandEmergencyResponse/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_6_7=g_navNode_0_4_6.addNode('3884','Industry and Regulatory Assistance and Training Resources',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/IndustryandRegulatoryAssistanceandTrainingResources/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_6_8=g_navNode_0_4_6.addNode('3885','Program Standards',ssUrlPrefix + 'Food/FoodSafety/RetailFoodProtection/ProgramStandards/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_4_7=g_navNode_0_4.addNode('2912','Safe Storage, Preparation \x26 Handling',ssUrlPrefix + 'Food/FoodSafety/SafeStoragePreparationHandling/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5=g_navNode_0.addNode('2895','Guidance, Compliance \x26 Regulatory Information',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-gcri','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_0=g_navNode_0_5.addNode('2913','Regulations \x26 Laws',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/RegulationsLaws/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-gcri','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_1=g_navNode_0_5.addNode('2914','Guidance Documents',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-gcri','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_1_0=g_navNode_0_5_1.addNode('3708','Acidified and Low-Acid Canned Foods',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/AcidifiedandLow-AcidCannedFoods/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_5_1_1=g_navNode_0_5_1.addNode('3709','Biotechnology',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/Biotechnology/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-bio','secondaryUrlVariableField==region1');
g_navNode_0_5_1_2=g_navNode_0_5_1.addNode('3710','Chemical Contaminants and Pesticides',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/ChemicalContaminantsandPesticides/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-gcri-gd-ccp','secondaryUrlVariableField==region1');
g_navNode_0_5_1_3=g_navNode_0_5_1.addNode('3711','Compliance Activities',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/ComplianceActivities/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-gcri-gd-ca','secondaryUrlVariableField==region1');
g_navNode_0_5_1_4=g_navNode_0_5_1.addNode('3046','Dietary Supplements',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/DietarySupplements/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_1_4_0=g_navNode_0_5_1_4.addNode('3051','Dietary Supplement labeling guide',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/DietarySupplements/DietarySupplementlabelingguide/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_1_5=g_navNode_0_5_1.addNode('3047','Food Defense and Emergency Response',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/FoodDefenseandEmergencyResponse/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_1_6=g_navNode_0_5_1.addNode('3048','Food Ingredients and Packaging',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/FoodIngredientsandPackaging/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-webteam, fdagov-edit-cfsan-gcri-gd-fip','secondaryUrlVariableField==region1');
g_navNode_0_5_1_6_0=g_navNode_0_5_1_6.addNode('3052','Redbook',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/FoodIngredientsandPackaging/Redbook/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofas','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_1_7=g_navNode_0_5_1.addNode('3049','Food Labeling \x26 Nutrition',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/FoodLabelingNutrition/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_1_7_0=g_navNode_0_5_1_7.addNode('3053','Food Labeling Guide',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/FoodLabelingNutrition/FoodLabelingGuide/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_1_8=g_navNode_0_5_1.addNode('3712','Food Processing \x26 HACCP',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/FoodProcessingHACCP/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-gcri-gd-fph','secondaryUrlVariableField==region1');
g_navNode_0_5_1_9=g_navNode_0_5_1.addNode('3713','Imports \x26 Exports',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/ImportsExports/default.htm','secondaryUrlVariableField==region1');
g_navNode_0_5_1_10=g_navNode_0_5_1.addNode('3714','Infant Formula',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/InfantFormula/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','secondaryUrlVariableField==region1');
g_navNode_0_5_1_11=g_navNode_0_5_1.addNode('3715','Juice',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/Juice/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-gcri-gd-ju','secondaryUrlVariableField==region1');
g_navNode_0_5_1_12=g_navNode_0_5_1.addNode('3716','Medical Foods',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/MedicalFoods/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','secondaryUrlVariableField==region1');
g_navNode_0_5_1_13=g_navNode_0_5_1.addNode('3717','Natural Toxins',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/NaturalToxins/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-gcri-gd-nt','secondaryUrlVariableField==region1');
g_navNode_0_5_1_14=g_navNode_0_5_1.addNode('3718','Produce',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/Produce/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-gcri-gd-pd','secondaryUrlVariableField==region1');
g_navNode_0_5_1_15=g_navNode_0_5_1.addNode('3719','Retail Food Protection',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/RetailFoodProtection/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofs','secondaryUrlVariableField==region1');
g_navNode_0_5_1_16=g_navNode_0_5_1.addNode('3720','Sanitation',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/Sanitation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-gcri-gd-sn','secondaryUrlVariableField==region1');
g_navNode_0_5_1_17=g_navNode_0_5_1.addNode('3050','Seafood',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/Seafood/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-gcri-gd-sf, fdagov-appr-cfsan-ofs','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_1_18=g_navNode_0_5_1.addNode('3721','Small Businesses/Small Entity Compliance Guides',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/SmallBusinessesSmallEntityComplianceGuides/default.htm','secondaryUrlVariableField==region1');
g_navNode_0_5_2=g_navNode_0_5.addNode('2915','Current Good Manufacturing Practices \x28CGMPs\x29',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/CurrentGoodManufacturingPracticesCGMPs/default.htm','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_3=g_navNode_0_5.addNode('3054','Registration of Food Facilities',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/RegistrationofFoodFacilities/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer, fdagov-appr-cfsan-gcri-rff','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_3_0=g_navNode_0_5_3.addNode('3055','Online Registration',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/RegistrationofFoodFacilities/OnlineRegistration/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_3_0_0=g_navNode_0_5_3_0.addNode('3057','Tutorials',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/RegistrationofFoodFacilities/OnlineRegistration/Tutorials/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_3_1=g_navNode_0_5_3.addNode('3056','Final Rule on Registration of Food Facilities',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/RegistrationofFoodFacilities/FinalRuleonRegistrationofFoodFacilities/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_3_1_0=g_navNode_0_5_3_1.addNode('3058','Overview of Registration Interim Final Rule',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/RegistrationofFoodFacilities/FinalRuleonRegistrationofFoodFacilities/OverviewofRegistrationInterimFinalRule/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_4=g_navNode_0_5.addNode('2916','Prior Notice of Imported Foods',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/PriorNoticeofImportedFoods/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-oc, fdagov-appr-cfsan-gcri-pnif','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_4_0=g_navNode_0_5_4.addNode('3059','Filing Prior Notice',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/PriorNoticeofImportedFoods/FilingPriorNotice/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-oc','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_5=g_navNode_0_5.addNode('2917','Compliance \x26 Enforcement',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/ComplianceEnforcement/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-oc','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_5_0=g_navNode_0_5_5.addNode('3060','Investigation',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/ComplianceEnforcement/Investigation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-oc','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_5_0_0=g_navNode_0_5_5_0.addNode('3062','Investigation of Foodborne Outbreaks',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/ComplianceEnforcement/Investigation/InvestigationofFoodborneOutbreaks/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-oc','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_5_1=g_navNode_0_5_5.addNode('3061','Enforcement',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/ComplianceEnforcement/Enforcement/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-oc','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_5_1_0=g_navNode_0_5_5_1.addNode('3063','Recall Policy',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/ComplianceEnforcement/Enforcement/RecallPolicy/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-oc','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_5_6=g_navNode_0_5.addNode('2918','Industry Assistance \x26 Training',ssUrlPrefix + 'Food/GuidanceComplianceRegulatoryInformation/IndustryAssistanceTraining/default.htm','cspSectionApproverAlias==fdagov-appr-food','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_6=g_navNode_0.addNode('2900','International Activities',ssUrlPrefix + 'Food/InternationalActivities/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ocd','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_0_6_0=g_navNode_0_6.addNode('2941','Importing into the United States',ssUrlPrefix + 'Food/InternationalActivities/Imports/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ocd','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_6_0_0=g_navNode_0_6_0.addNode('2946','Safety of Imported Foods',ssUrlPrefix + 'Food/InternationalActivities/Imports/SafetyofImportedFoods/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ocd','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_6_0_1=g_navNode_0_6_0.addNode('2947','Guidance \x26 Regulatory Information',ssUrlPrefix + 'Food/InternationalActivities/Imports/GuidanceRegulatoryInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ocd','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_6_0_2=g_navNode_0_6_0.addNode('2948','Toxic Elements in Foods \x26 Foodware',ssUrlPrefix + 'Food/InternationalActivities/Imports/ToxicElementsinFoodsFoodware/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ocd','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_6_0_2_0=g_navNode_0_6_0_2.addNode('2949','Tableware from China',ssUrlPrefix + 'Food/InternationalActivities/Imports/ToxicElementsinFoodsFoodware/TablewarefromChina/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ocd','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_6_0_3=g_navNode_0_6_0.addNode('2950','Importing Food Gifts for Personal Use',ssUrlPrefix + 'Food/InternationalActivities/Imports/ImportingFoodGiftsforPersonalUse/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ocd','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_6_1=g_navNode_0_6.addNode('2942','Exporting from the United States',ssUrlPrefix + 'Food/InternationalActivities/Exports/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ocd','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_6_1_0=g_navNode_0_6_1.addNode('2945','Export Certificates',ssUrlPrefix + 'Food/InternationalActivities/Exports/ExportCertificates/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ocd','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_6_2=g_navNode_0_6.addNode('2943','Trade Agreements \x26 International Arrangements',ssUrlPrefix + 'Food/InternationalActivities/TradeAgreementsInternationalArrangements/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ocd','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_6_3=g_navNode_0_6.addNode('2944','Documents in Other Languages',ssUrlPrefix + 'Food/InternationalActivities/DocumentsinOtherLanguages/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ocd','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7=g_navNode_0.addNode('2897','Labeling \x26 Nutrition',ssUrlPrefix + 'Food/LabelingNutrition/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_0=g_navNode_0_7.addNode('2923','Consumer Information',ssUrlPrefix + 'Food/LabelingNutrition/ConsumerInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_1=g_navNode_0_7.addNode('2924','Food Labeling Guidance \x26 Regulatory Information',ssUrlPrefix + 'Food/LabelingNutrition/FoodLabelingGuidanceRegulatoryInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_1_0=g_navNode_0_7_1.addNode('3012','Regulations \x26 Federal Register Documents',ssUrlPrefix + 'Food/LabelingNutrition/FoodLabelingGuidanceRegulatoryInformation/RegulationsFederalRegisterDocuments/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_1_1=g_navNode_0_7_1.addNode('3013','Topic-Specific Labeling Information',ssUrlPrefix + 'Food/LabelingNutrition/FoodLabelingGuidanceRegulatoryInformation/Topic-SpecificLabelingInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_1_2=g_navNode_0_7_1.addNode('3015','Foods Exempt from Labeling',ssUrlPrefix + 'Food/LabelingNutrition/FoodLabelingGuidanceRegulatoryInformation/FoodsExemptfromLabeling/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_1_3=g_navNode_0_7_1.addNode('3016','Small Business Nutrition Labeling Exemption',ssUrlPrefix + 'Food/LabelingNutrition/FoodLabelingGuidanceRegulatoryInformation/SmallBusinessNutritionLabelingExemption/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_1_3_0=g_navNode_0_7_1_3.addNode('3019','Online Submissions',ssUrlPrefix + 'Food/LabelingNutrition/FoodLabelingGuidanceRegulatoryInformation/SmallBusinessNutritionLabelingExemption/OnlineSubmissions/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_1_3_1=g_navNode_0_7_1_3.addNode('3020','Paper Submissions',ssUrlPrefix + 'Food/LabelingNutrition/FoodLabelingGuidanceRegulatoryInformation/SmallBusinessNutritionLabelingExemption/PaperSubmissions/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_1_4=g_navNode_0_7_1.addNode('3017','Information for Restaurants \x26 Retail Establishments',ssUrlPrefix + 'Food/LabelingNutrition/FoodLabelingGuidanceRegulatoryInformation/InformationforRestaurantsRetailEstablishments/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_1_5=g_navNode_0_7_1.addNode('3018','Inspection \x26 Compliance',ssUrlPrefix + 'Food/LabelingNutrition/FoodLabelingGuidanceRegulatoryInformation/InspectionCompliance/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_1_5_0=g_navNode_0_7_1_5.addNode('3021','Warning \x26 Other Letters',ssUrlPrefix + 'Food/LabelingNutrition/FoodLabelingGuidanceRegulatoryInformation/InspectionCompliance/WarningOtherLetters/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_2=g_navNode_0_7.addNode('2925','Label Claims',ssUrlPrefix + 'Food/LabelingNutrition/LabelClaims/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_2_0=g_navNode_0_7_2.addNode('3022','FDA Modernization Act \x28FDAMA\x29 Claims',ssUrlPrefix + 'Food/LabelingNutrition/LabelClaims/FDAModernizationActFDAMAClaims/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_2_1=g_navNode_0_7_2.addNode('3023','Claims Made for Conventional Foods \x26 Dietary Supplements',ssUrlPrefix + 'Food/LabelingNutrition/LabelClaims/ClaimsMadeforConventionalFoodsDietarySupplements/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_2_2=g_navNode_0_7_2.addNode('3024','Health Claims Meeting Significant Scientific Agreement \x28SSA\x29',ssUrlPrefix + 'Food/LabelingNutrition/LabelClaims/HealthClaimsMeetingSignificantScientificAgreementSSA/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_2_3=g_navNode_0_7_2.addNode('3025','Qualified Health Claims',ssUrlPrefix + 'Food/LabelingNutrition/LabelClaims/QualifiedHealthClaims/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_2_3_0=g_navNode_0_7_2_3.addNode('3029','Guidance \x26 Compliance',ssUrlPrefix + 'Food/LabelingNutrition/LabelClaims/QualifiedHealthClaims/GuidanceCompliance/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_2_3_1=g_navNode_0_7_2_3.addNode('3030','Qualified Health Claims Petitions',ssUrlPrefix + 'Food/LabelingNutrition/LabelClaims/QualifiedHealthClaims/QualifiedHealthClaimsPetitions/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_2_4=g_navNode_0_7_2.addNode('3026','Nutrient Content Claims',ssUrlPrefix + 'Food/LabelingNutrition/LabelClaims/NutrientContentClaims/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_2_5=g_navNode_0_7_2.addNode('3027','Structure/Function Claims',ssUrlPrefix + 'Food/LabelingNutrition/LabelClaims/StructureFunctionClaims/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_2_6=g_navNode_0_7_2.addNode('3028','How to Submit Label Claim Petitions \x26 Notifications',ssUrlPrefix + 'Food/LabelingNutrition/LabelClaims/HowtoSubmitLabelClaimPetitionsNotifications/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_3=g_navNode_0_7.addNode('2926','Food Allergens Labeling',ssUrlPrefix + 'Food/LabelingNutrition/FoodAllergensLabeling/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_3_0=g_navNode_0_7_3.addNode('3031','Guidance, Compliance \x26 Regulatory Information',ssUrlPrefix + 'Food/LabelingNutrition/FoodAllergensLabeling/GuidanceComplianceRegulatoryInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_3_0_0=g_navNode_0_7_3_0.addNode('3033','Allergen Compliance Policy Guide',ssUrlPrefix + 'Food/LabelingNutrition/FoodAllergensLabeling/GuidanceComplianceRegulatoryInformation/AllergenCompliancePolicyGuide/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_3_1=g_navNode_0_7_3.addNode('3032','Exemptions from Food Allergen Labeling Petition \x26 Notification Process',ssUrlPrefix + 'Food/LabelingNutrition/FoodAllergensLabeling/ExemptionsfromFoodAllergenLabelingPetitionNotificationProcess/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_4=g_navNode_0_7.addNode('2927','Print \x26 Information Materials',ssUrlPrefix + 'Food/LabelingNutrition/PrintInformationMaterials/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_7_5=g_navNode_0_7.addNode('2928','Reports \x26 Research',ssUrlPrefix + 'Food/LabelingNutrition/ReportsResearch/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-onlds','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_8=g_navNode_0.addNode('2903','News \x26 Events',ssUrlPrefix + 'Food/NewsEvents/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ne','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_8_0=g_navNode_0_8.addNode('2974','What\'s New in Food',ssUrlPrefix + 'Food/NewsEvents/WhatsNewinFood/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ne','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_8_1=g_navNode_0_8.addNode('2975','News Releases',ssUrlPrefix + 'Food/NewsEvents/NewsReleases/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ne','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_8_1_0=g_navNode_0_8_1.addNode('2979','Archives',ssUrlPrefix + 'Food/NewsEvents/NewsReleases/Archives/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ne','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_8_2=g_navNode_0_8.addNode('2976','Constituent Updates',ssUrlPrefix + 'Food/NewsEvents/ConstituentUpdates/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cu,fdagov-appr-cfsan-ne','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_8_3=g_navNode_0_8.addNode('2977','Workshops, Meetings \x26 Conferences',ssUrlPrefix + 'Food/NewsEvents/WorkshopsMeetingsConferences/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ne','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_8_3_0=g_navNode_0_8_3.addNode('2980','Past',ssUrlPrefix + 'Food/NewsEvents/WorkshopsMeetingsConferences/Past/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ne','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_8_4=g_navNode_0_8.addNode('2978','Speeches, Reports \x26 Presentations',ssUrlPrefix + 'Food/NewsEvents/SpeechesReportsPresentations/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ne','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9=g_navNode_0.addNode('2904','Resources For You',ssUrlPrefix + 'Food/ResourcesForYou/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9_0=g_navNode_0_9.addNode('2981','Consumers',ssUrlPrefix + 'Food/ResourcesForYou/Consumers/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9_0_0=g_navNode_0_9_0.addNode('2989','Selected Health Topics',ssUrlPrefix + 'Food/ResourcesForYou/Consumers/SelectedHealthTopics/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9_0_1=g_navNode_0_9_0.addNode('2990','Women',ssUrlPrefix + 'Food/ResourcesForYou/Consumers/Women/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9_0_2=g_navNode_0_9_0.addNode('2991','Seniors',ssUrlPrefix + 'Food/ResourcesForYou/Consumers/Seniors/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9_0_3=g_navNode_0_9_0.addNode('2992','Kids \x26 Teens',ssUrlPrefix + 'Food/ResourcesForYou/Consumers/KidsTeens/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9_1=g_navNode_0_9.addNode('2982','Health Educators',ssUrlPrefix + 'Food/ResourcesForYou/HealthEducators/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9_2=g_navNode_0_9.addNode('2983','Health Care Professionals',ssUrlPrefix + 'Food/ResourcesForYou/HealthCareProfessionals/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9_3=g_navNode_0_9.addNode('2984','Food Industry',ssUrlPrefix + 'Food/ResourcesForYou/FoodIndustry/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9_4=g_navNode_0_9.addNode('2985','Students \x26 Teachers',ssUrlPrefix + 'Food/ResourcesForYou/StudentsTeachers/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9_4_0=g_navNode_0_9_4.addNode('2988','Science and The Food Supply',ssUrlPrefix + 'Food/ResourcesForYou/StudentsTeachers/ScienceandTheFoodSupply/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9_5=g_navNode_0_9.addNode('2986','En Espa\xf1ol',ssUrlPrefix + 'Food/ResourcesForYou/EnEspanol/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_9_6=g_navNode_0_9.addNode('2987','Other Languages',ssUrlPrefix + 'Food/ResourcesForYou/OtherLanguages/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ofdcer','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10=g_navNode_0.addNode('2902','Science \x26 Research',ssUrlPrefix + 'Food/ScienceResearch/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_0=g_navNode_0_10.addNode('2970','Research Areas',ssUrlPrefix + 'Food/ScienceResearch/ResearchAreas/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_0_0=g_navNode_0_10_0.addNode('2993','Antimicrobial Resistance Among Foodborne Pathogens',ssUrlPrefix + 'Food/ScienceResearch/ResearchAreas/AntimicrobialResistanceAmongFoodbornePathogens/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_0_1=g_navNode_0_10_0.addNode('2994','Antibiotic Resistance of Microorganisms',ssUrlPrefix + 'Food/ScienceResearch/ResearchAreas/AntibioticResistanceofMicroorganisms/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_0_2=g_navNode_0_10_0.addNode('2995','Chemical Toxicity',ssUrlPrefix + 'Food/ScienceResearch/ResearchAreas/ChemicalToxicity/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_0_3=g_navNode_0_10_0.addNode('2996','Microbial Risk Analysis',ssUrlPrefix + 'Food/ScienceResearch/ResearchAreas/MicrobialRiskAnalysis/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_0_4=g_navNode_0_10_0.addNode('2997','Safe Practices for Food Processes',ssUrlPrefix + 'Food/ScienceResearch/ResearchAreas/SafePracticesforFoodProcesses/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_0_5=g_navNode_0_10_0.addNode('2998','Consumer Research',ssUrlPrefix + 'Food/ScienceResearch/ResearchAreas/ConsumerResearch/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_0_6=g_navNode_0_10_0.addNode('2999','Risk Assessment /Safety Assessment',ssUrlPrefix + 'Food/ScienceResearch/ResearchAreas/RiskAssessmentSafetyAssessment/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_0_6_0=g_navNode_0_10_0_6.addNode('3001','Healthy People 2010',ssUrlPrefix + 'Food/ScienceResearch/ResearchAreas/RiskAssessmentSafetyAssessment/HealthyPeople2010/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_0_6_1=g_navNode_0_10_0_6.addNode('3002','Total Diet Study',ssUrlPrefix + 'Food/ScienceResearch/ResearchAreas/RiskAssessmentSafetyAssessment/TotalDietStudy/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_0_6_2=g_navNode_0_10_0_6.addNode('3003','Public Health Risk Assessments',ssUrlPrefix + 'Food/ScienceResearch/ResearchAreas/RiskAssessmentSafetyAssessment/PublicHealthRiskAssessments/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_0_7=g_navNode_0_10_0.addNode('3000','Intramural Research Program',ssUrlPrefix + 'Food/ScienceResearch/ResearchAreas/IntramuralResearchProgram/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_1=g_navNode_0_10.addNode('2971','Laboratory Methods',ssUrlPrefix + 'Food/ScienceResearch/LaboratoryMethods/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_1_0=g_navNode_0_10_1.addNode('3004','CFSAN Laboratory Quality Assurance Manual',ssUrlPrefix + 'Food/ScienceResearch/LaboratoryMethods/CFSANLaboratoryQualityAssuranceManual/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_1_1=g_navNode_0_10_1.addNode('3005','Bacteriological Analytical Manual \x28BAM\x29',ssUrlPrefix + 'Food/ScienceResearch/LaboratoryMethods/BacteriologicalAnalyticalManualBAM/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_1_2=g_navNode_0_10_1.addNode('3006','Drug \x26 Chemical Residues Methodology',ssUrlPrefix + 'Food/ScienceResearch/LaboratoryMethods/DrugChemicalResiduesMethodology/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_1_3=g_navNode_0_10_1.addNode('3007','Ephedrine Alkaloids Analytical Methods',ssUrlPrefix + 'Food/ScienceResearch/LaboratoryMethods/EphedrineAlkaloidsAnalyticalMethods/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_1_4=g_navNode_0_10_1.addNode('3008','Foodborne Pathogens \x26 Contaminants',ssUrlPrefix + 'Food/ScienceResearch/LaboratoryMethods/FoodbornePathogensContaminants/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_1_5=g_navNode_0_10_1.addNode('3009','Macroanalytical Procedures Manual \x28MPM\x29',ssUrlPrefix + 'Food/ScienceResearch/LaboratoryMethods/MacroanalyticalProceduresManualMPM/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_1_6=g_navNode_0_10_1.addNode('3010','Elemental Analysis Manual \x28EAM\x29',ssUrlPrefix + 'Food/ScienceResearch/LaboratoryMethods/ElementalAnalysisManualEAM/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_1_7=g_navNode_0_10_1.addNode('3011','Pesticide Analytical Manual \x28PAM\x29',ssUrlPrefix + 'Food/ScienceResearch/LaboratoryMethods/PesticideAnalysisManualPAM/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_2=g_navNode_0_10.addNode('2972','Selected Scientific Publications \x26 Presentations',ssUrlPrefix + 'Food/ScienceResearch/SelectedScientificPublicationsPresentations/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_0_10_3=g_navNode_0_10.addNode('2973','Research Offices, Divisions, \x26 Labs at FDA',ssUrlPrefix + 'Food/ScienceResearch/ResearchOfficesDivisionsLabsatFDA/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-ors','cspSectionEditorAlias==fdagov-edit-cfsan-webteam','secondaryUrlVariableField==region1');
g_navNode_1=g_navNode_Root.addNode('1336','Drugs',ssUrlPrefix + 'Drugs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam, fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_1_0=g_navNode_1.addNode('3165','Emergency Preparedness',ssUrlPrefix + 'Drugs/EmergencyPreparedness/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_0_0=g_navNode_1_0.addNode('3216','Bioterrorism and Drug Preparedness',ssUrlPrefix + 'Drugs/EmergencyPreparedness/BioterrorismandDrugPreparedness/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_1=g_navNode_1.addNode('3159','Drug Approvals and Databases',ssUrlPrefix + 'Drugs/InformationOnDrugs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_1_0=g_navNode_1_1.addNode('3168','Approved Drugs',ssUrlPrefix + 'Drugs/InformationOnDrugs/ApprovedDrugs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_1_0_0=g_navNode_1_1_0.addNode('3170','Approved Drug Products with Therapeutic Equivalence Evaluations \x28Orange Book\x29',ssUrlPrefix + 'Drugs/InformationOnDrugs/ApprovedDrugs/ApprovedDrugProductswithTherapeuticEquivalenceEvaluationsOrangeBook/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_1_0_1=g_navNode_1_1_0.addNode('3171','Earlier Drug Approvals',ssUrlPrefix + 'Drugs/InformationOnDrugs/ApprovedDrugs/EarlierDrugApprovals/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_1_1=g_navNode_1_1.addNode('3871','Drugs To Be Discontinued',ssUrlPrefix + 'Drugs/InformationOnDrugs/DrugsToBeDiscontinued/index.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_2=g_navNode_1.addNode('3160','Drug Safety and Availability',ssUrlPrefix + 'Drugs/DrugSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_2_0=g_navNode_1_2.addNode('3663','Drug Shortages',ssUrlPrefix + 'Drugs/DrugSafety/DrugShortages/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_2_1=g_navNode_1_2.addNode('3741','Postmarket Drug Safety Information for Patients and Providers',ssUrlPrefix + 'Drugs/DrugSafety/PostmarketDrugSafetyInformationforPatientsandProviders/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_2_1_0=g_navNode_1_2_1.addNode('3172','Drug Safety Information for Consumers',ssUrlPrefix + 'Drugs/DrugSafety/PostmarketDrugSafetyInformationforPatientsandProviders/DrugSafetyInformationforConsumers/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_2_1_1=g_navNode_1_2_1.addNode('3740','Drug Safety Information for Healthcare Professionals',ssUrlPrefix + 'Drugs/DrugSafety/PostmarketDrugSafetyInformationforPatientsandProviders/DrugSafetyInformationforHeathcareProfessionals/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_2_2=g_navNode_1_2.addNode('3173','Public Health Advisories',ssUrlPrefix + 'Drugs/DrugSafety/PublicHealthAdvisories/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_2_3=g_navNode_1_2.addNode('3167','Information by Drug Class',ssUrlPrefix + 'Drugs/DrugSafety/InformationbyDrugClass/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_2_4=g_navNode_1_2.addNode('3176','Medication Errors',ssUrlPrefix + 'Drugs/DrugSafety/MedicationErrors/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_2_5=g_navNode_1_2.addNode('3179','Drug Safety Newsletter',ssUrlPrefix + 'Drugs/DrugSafety/DrugSafetyNewsletter/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_2_6=g_navNode_1_2.addNode('3180','Drug Safety Podcasts',ssUrlPrefix + 'Drugs/DrugSafety/DrugSafetyPodcasts/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_2_7=g_navNode_1_2.addNode('3178','Drug Interactions \x26 Labeling',ssUrlPrefix + 'Drugs/DrugSafety/DrugInteractionsLabeling/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3=g_navNode_1.addNode('3161','Development \x26 Approval Process',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0=g_navNode_1_3.addNode('3181','How Drugs are Developed and Approved',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_0=g_navNode_1_3_0.addNode('3247','Cancer Drug Approvals',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/CancerDrugApprovals/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_1=g_navNode_1_3_0.addNode('3248','Drug and Biologic Approval Reports',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/DrugandBiologicApprovalReports/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_1_0=g_navNode_1_3_0_1.addNode('3250','ANDA \x28Generic\x29 Drug Approvals',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/DrugandBiologicApprovalReports/ANDAGenericDrugApprovals/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_1_1=g_navNode_1_3_0_1.addNode('3251','Drug and Biologic Approvals',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/DrugandBiologicApprovalReports/DrugandBiologicApprovals/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_1_2=g_navNode_1_3_0_1.addNode('3252','NME Drug and New Biologic Approvals',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/DrugandBiologicApprovalReports/NMEDrugandNewBiologicApprovals/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_1_3=g_navNode_1_3_0_1.addNode('3253','Priority NDA and BLA Approvals',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/DrugandBiologicApprovalReports/PriorityNDAandBLAApprovals/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_1_4=g_navNode_1_3_0_1.addNode('3254','Efficacy Supplement Approvals',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/DrugandBiologicApprovalReports/EfficacySupplementApprovals/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_1_5=g_navNode_1_3_0_1.addNode('3255','Accelerated and Restricted Approvals',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/DrugandBiologicApprovalReports/AcceleratedandRestrictedApprovals/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_1_6=g_navNode_1_3_0_1.addNode('3256','NDA Approvals by Therapeutic Potential and Chemical Type',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/DrugandBiologicApprovalReports/NDAApprovalsbyTherapeuticPotentialandChemicalType/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_1_7=g_navNode_1_3_0_1.addNode('3257','Fast Track Approval Reports',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/DrugandBiologicApprovalReports/FastTrackApprovalReports/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_2=g_navNode_1_3_0.addNode('3249','Approval Statistics',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/ApprovalStatistics/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_2_0=g_navNode_1_3_0_2.addNode('3258','Approval Times for NDAs and BLAs',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/ApprovalStatistics/ApprovalTimesforNDAsandBLAs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_2_1=g_navNode_1_3_0_2.addNode('3259','Approval Times for Priority \x26 Standard NME\u2019s and New BLAs',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/ApprovalStatistics/ApprovalTimesforPriorityStandardNME\u2019sandNewBLAs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_2_2=g_navNode_1_3_0_2.addNode('3260','Statistics for Fast Track Reports',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/ApprovalStatistics/StatisticsforFastTrackReports/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_2_3=g_navNode_1_3_0_2.addNode('3261','Number of NDA Receipts by Calendar Year',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/ApprovalStatistics/NumberofNDAReceiptsbyCalendarYear/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_2_4=g_navNode_1_3_0_2.addNode('3262','First Action Performance Reports \u2013 Cohort Closeout Statistics \x28Fiscal Years\x29',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/ApprovalStatistics/FirstActionPerformanceReports\u2013CohortCloseoutStatisticsFiscalYears/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_0_2_5=g_navNode_1_3_0_2.addNode('3263','Approval Rates by Cohort Year of Receipt \x28Fiscal Years\x29',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/HowDrugsareDevelopedandApproved/ApprovalStatistics/ApprovalRatesbyCohortYearofReceiptFiscalYears/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_1=g_navNode_1_3.addNode('3182','Approval Applications',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ApprovalApplications/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_1_0=g_navNode_1_3_1.addNode('3264','Types of Applications',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ApprovalApplications/TypesofApplications/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_1_1=g_navNode_1_3_1.addNode('3265','Investigational New Drug \x28IND\x29 Application',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ApprovalApplications/InvestigationalNewDrugINDApplication/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_1_1_0=g_navNode_1_3_1_1.addNode('3270','Overview',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ApprovalApplications/InvestigationalNewDrugINDApplication/Overview/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_1_1_1=g_navNode_1_3_1_1.addNode('3271','Regulatory Information for INDs',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ApprovalApplications/InvestigationalNewDrugINDApplication/RegulatoryInformationforINDs/default.htm','secondaryUrlVariableField==region1');
g_navNode_1_3_1_2=g_navNode_1_3_1.addNode('3266','New Drug Application \x28NDA\x29',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ApprovalApplications/NewDrugApplicationNDA/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_1_2_0=g_navNode_1_3_1_2.addNode('3272','Botanical Drug Review',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ApprovalApplications/NewDrugApplicationNDA/BotanicalDrugReview/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_1_3=g_navNode_1_3_1.addNode('3267','Therapeutic Biologic Applications',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ApprovalApplications/TherapeuticBiologicApplications/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_1_3_0=g_navNode_1_3_1_3.addNode('3273','Overview',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ApprovalApplications/TherapeuticBiologicApplications/Overview/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_1_4=g_navNode_1_3_1.addNode('3268','Abbreviated New Drug Application \x28ANDA\x29\x3a Generics',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ApprovalApplications/AbbreviatedNewDrugApplicationANDAGenerics/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_1_5=g_navNode_1_3_1.addNode('3269','Over-the-Counter Drugs',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ApprovalApplications/Over-the-CounterDrugs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_2=g_navNode_1_3.addNode('3183','Development Resources',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/DevelopmentResources/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_2_0=g_navNode_1_3_2.addNode('3274','Over-the-Counter \x28OTC\x29 Drugs',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/DevelopmentResources/Over-the-CounterOTCDrugs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_2_0_0=g_navNode_1_3_2_0.addNode('3278','Status of OTC Rulemakings',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/DevelopmentResources/Over-the-CounterOTCDrugs/StatusofOTCRulemakings/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_2_1=g_navNode_1_3_2.addNode('3275','Cancer Drugs',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/DevelopmentResources/CancerDrugs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_2_2=g_navNode_1_3_2.addNode('3276','Generic Drug Development',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/DevelopmentResources/GenericDrugDevelopment/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_2_3=g_navNode_1_3_2.addNode('3277','Labeling',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/DevelopmentResources/Labeling/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_3=g_navNode_1_3.addNode('3279','Conducting Clinical Trials',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ConductingClinicalTrials/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_4=g_navNode_1_3.addNode('3184','Forms \x26 Submission Requirements',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/FormsSubmissionRequirements/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_4_0=g_navNode_1_3_4.addNode('3280','Electronic Submissions',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/FormsSubmissionRequirements/ElectronicSubmissions/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_4_0_0=g_navNode_1_3_4_0.addNode('3283','Data Standards Manual \x28monographs\x29',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/FormsSubmissionRequirements/ElectronicSubmissions/DataStandardsManualmonographs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_4_1=g_navNode_1_3_4.addNode('3281','Drug Master Files \x28DMFs\x29',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/FormsSubmissionRequirements/DrugMasterFilesDMFs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_5=g_navNode_1_3.addNode('3185','Manufacturing',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/Manufacturing/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_5_0=g_navNode_1_3_5.addNode('3284','Questions and Answers on Current Good Manufacturing Practices \x28cGMP\x29 for Drugs',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/Manufacturing/QuestionsandAnswersonCurrentGoodManufacturingPracticescGMPforDrugs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_6=g_navNode_1_3.addNode('3186','Small Business Assistance',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/SmallBusinessAssistance/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_3_7=g_navNode_1_3.addNode('3187','Import and Export of Human Drugs',ssUrlPrefix + 'Drugs/DevelopmentApprovalProcess/ImportandExportofHumanDrugs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_4=g_navNode_1.addNode('3162','Guidance, Compliance, \x26 Regulatory Information',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_1_4_0=g_navNode_1_4.addNode('3188','Laws, Acts, and Rules',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/LawsActsandRules/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_4_1=g_navNode_1_4.addNode('3189','Guidances',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/Guidances/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam, ','secondaryUrlVariableField==region1');
g_navNode_1_4_2=g_navNode_1_4.addNode('3190','Enforcement Activities by FDA',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/EnforcementActivitiesbyFDA/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_4_2_0=g_navNode_1_4_2.addNode('3195','Warning Letters and Notice of Violation Letters to Pharmaceutical Companies',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/EnforcementActivitiesbyFDA/WarningLettersandNoticeofViolationLetterstoPharmaceuticalCompanies/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_4_2_1=g_navNode_1_4_2.addNode('3196','Selected Enforcement Actions on Unapproved Drugs',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/EnforcementActivitiesbyFDA/SelectedEnforcementActionsonUnapprovedDrugs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_4_2_2=g_navNode_1_4_2.addNode('3197','Cyber Letters',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/EnforcementActivitiesbyFDA/CyberLetters/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_4_3=g_navNode_1_4.addNode('3191','Drug Registration and Listing',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/DrugRegistrationandListing/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_4_4=g_navNode_1_4.addNode('3192','Surveillance',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/Surveillance/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_4_4_0=g_navNode_1_4_4.addNode('3198','Adverse Drug Effects',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/Surveillance/AdverseDrugEffects/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_4_4_1=g_navNode_1_4_4.addNode('3199','Prescription Drug Advertising and Promotional Labeling',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/Surveillance/PrescriptionDrugAdvertisingandPromotionalLabeling/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_4_4_2=g_navNode_1_4_4.addNode('3200','Drug Marketing, Advertising, and Communications',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/Surveillance/DrugMarketingAdvertisingandCommunications/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_4_5=g_navNode_1_4.addNode('3193','Post-marketing \x28Phase IV Commitments\x29',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/Post-marketingPhaseIVCommitments/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_4_6=g_navNode_1_4.addNode('3194','Pharmacy Compounding',ssUrlPrefix + 'Drugs/GuidanceComplianceRegulatoryInformation/PharmacyCompounding/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_5=g_navNode_1.addNode('3164','News \x26 Events',ssUrlPrefix + 'Drugs/NewsEvents/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_5_0=g_navNode_1_5.addNode('3213','News Releases',ssUrlPrefix + 'Drugs/NewsEvents/NewsReleases/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_5_0_0=g_navNode_1_5_0.addNode('3214','News Archives',ssUrlPrefix + 'Drugs/NewsEvents/NewsReleases/NewsArchives/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_5_1=g_navNode_1_5.addNode('3215','Meetings, Conferences, \x26 Workshops',ssUrlPrefix + 'Drugs/NewsEvents/MeetingsConferencesWorkshops/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6=g_navNode_1.addNode('3163','Science \x26 Research',ssUrlPrefix + 'Drugs/ScienceResearch/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6_0=g_navNode_1_6.addNode('3201','Research Areas',ssUrlPrefix + 'Drugs/ScienceResearch/ResearchAreas/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6_0_0=g_navNode_1_6_0.addNode('3204','Drug Marketing, Advertising, and Communications Research',ssUrlPrefix + 'Drugs/ScienceResearch/ResearchAreas/DrugMarketingAdvertisingandCommunicationsResearch/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6_0_1=g_navNode_1_6_0.addNode('3205','Clinical Pharmacology',ssUrlPrefix + 'Drugs/ScienceResearch/ResearchAreas/ClinicalPharmacology/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6_0_2=g_navNode_1_6_0.addNode('3206','Applied Pharmacology',ssUrlPrefix + 'Drugs/ScienceResearch/ResearchAreas/AppliedPharmacology/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6_0_3=g_navNode_1_6_0.addNode('3207','Pharmaceutical Analysis',ssUrlPrefix + 'Drugs/ScienceResearch/ResearchAreas/PharmaceuticalAnalysis/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6_0_4=g_navNode_1_6_0.addNode('3208','Product Quality Research',ssUrlPrefix + 'Drugs/ScienceResearch/ResearchAreas/ProductQualityResearch/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6_0_5=g_navNode_1_6_0.addNode('3209','Pharmacogenetics',ssUrlPrefix + 'Drugs/ScienceResearch/ResearchAreas/Pharmacogenetics/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6_0_5_0=g_navNode_1_6_0_5.addNode('3210','Drug Development \x26 Drug Interactions',ssUrlPrefix + 'Drugs/ScienceResearch/ResearchAreas/Pharmacogenetics/DrugDevelopmentDrugInteractions/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6_0_6=g_navNode_1_6_0.addNode('3211','Oncology',ssUrlPrefix + 'Drugs/ScienceResearch/ResearchAreas/Oncology/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6_0_7=g_navNode_1_6_0.addNode('3212','Biostatistics',ssUrlPrefix + 'Drugs/ScienceResearch/ResearchAreas/Biostatistics/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6_1=g_navNode_1_6.addNode('3202','Selected Scientific Presentations \x26 Publications',ssUrlPrefix + 'Drugs/ScienceResearch/SelectedScientificPresentationsPublications/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_6_2=g_navNode_1_6.addNode('3203','Research Offices, Divisions, \x26 Labs at FDA',ssUrlPrefix + 'Drugs/ScienceResearch/ResearchOfficesDivisionsLabsatFDA/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7=g_navNode_1.addNode('3166','Resources For You',ssUrlPrefix + 'Drugs/ResourcesForYou/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0=g_navNode_1_7.addNode('3221','Information for Consumers',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_0=g_navNode_1_7_0.addNode('3225','Questions \x26 Answers',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/QuestionsAnswers/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1=g_navNode_1_7_0.addNode('3222','Buying \x26 Using Medicine Safely',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam, fdagov-appr-fc-bums','cspSectionEditorAlias==fdagov-edit-fc-bums','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_0=g_navNode_1_7_0_1.addNode('3226','Antibiotics and Antibiotic Resistance',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/AntibioticsandAntibioticResistance/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_1=g_navNode_1_7_0_1.addNode('3227','Buying Medicines Over the Internet',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/BuyingMedicinesOvertheInternet/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_2=g_navNode_1_7_0_1.addNode('3228','Buying Medicine from Outside the United States',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/BuyingMedicinefromOutsidetheUnitedStates/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_3=g_navNode_1_7_0_1.addNode('3229','Counterfeit Medicine',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/CounterfeitMedicine/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam, fdagov-appr-cder-cm','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_4=g_navNode_1_7_0_1.addNode('3230','Ensuring Safe Use of Medicine',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/EnsuringSafeUseofMedicine/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_4_0=g_navNode_1_7_0_1_4.addNode('3231','General Use of Medicine',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/EnsuringSafeUseofMedicine/GeneralUseofMedicine/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_4_1=g_navNode_1_7_0_1_4.addNode('3232','Driving When You Are Using Medicine',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/EnsuringSafeUseofMedicine/DrivingWhenYouAreUsingMedicine/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_4_2=g_navNode_1_7_0_1_4.addNode('3233','Safe Disposal of Medicines',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/EnsuringSafeUseofMedicine/SafeDisposalofMedicines/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_5=g_navNode_1_7_0_1.addNode('3234','Understanding Generic Drugs',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/UnderstandingGenericDrugs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_6=g_navNode_1_7_0_1.addNode('3235','Misuse of Prescription Pain Relievers',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/MisuseofPrescriptionPainRelievers/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_7=g_navNode_1_7_0_1.addNode('3236','Understanding Over-the-Counter Medicines',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/UnderstandingOver-the-CounterMedicines/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_7_0=g_navNode_1_7_0_1_7.addNode('3241','Choosing the right over-the-counter medicine \x28OTCs\x29',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/UnderstandingOver-the-CounterMedicines/Choosingtherightover-the-countermedicineOTCs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_7_1=g_navNode_1_7_0_1_7.addNode('3242','The Over-the-Counter Medicine Label',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/UnderstandingOver-the-CounterMedicines/TheOver-the-CounterMedicineLabel/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_7_2=g_navNode_1_7_0_1_7.addNode('3243','Tips For Parents',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/UnderstandingOver-the-CounterMedicines/TipsForParents/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_7_3=g_navNode_1_7_0_1_7.addNode('3244','Safe Use of Over-the-Counter Pain Relievers and Fever Reducers',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/UnderstandingOver-the-CounterMedicines/SafeUseofOver-the-CounterPainRelieversandFeverReducers/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_7_4=g_navNode_1_7_0_1_7.addNode('3245','Safe Daily Use of Aspirin',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/UnderstandingOver-the-CounterMedicines/SafeDailyUseofAspirin/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_1_7_5=g_navNode_1_7_0_1_7.addNode('3246','Graphics and Other Media',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/BuyingUsingMedicineSafely/UnderstandingOver-the-CounterMedicines/GraphicsandOtherMedia/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_2=g_navNode_1_7_0.addNode('3237','Tips for Seniors',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/TipsforSeniors/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_3=g_navNode_1_7_0.addNode('3238','Tips for Parents',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/TipsforParents/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_4=g_navNode_1_7_0.addNode('3239','En Espa\xf1ol',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/EnEspa\xf1ol/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_5=g_navNode_1_7_0.addNode('3240','Other Languages',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/OtherLanguages/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_0_6=g_navNode_1_7_0.addNode('3953','Prescription Drug Advertising',ssUrlPrefix + 'Drugs/ResourcesForYou/Consumers/PrescriptionDrugAdvertising/index.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_1=g_navNode_1_7.addNode('3223','Information for Healthcare Professionals',ssUrlPrefix + 'Drugs/ResourcesForYou/HealthProfessionals/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_1_0=g_navNode_1_7_1.addNode('3743','Drug Safety Information',ssUrlPrefix + 'Drugs/ResourcesForYou/HealthProfessionals/DrugSafetyInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_1_7_2=g_navNode_1_7.addNode('3224','Information for Industry',ssUrlPrefix + 'Drugs/ResourcesForYou/Industry/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_2=g_navNode_Root.addNode('1337','Medical Devices',ssUrlPrefix + 'MedicalDevices/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam, fdagov-appr-oerwebteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0=g_navNode_2.addNode('1644','Products and Medical Procedures',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_0=g_navNode_2_0.addNode('3545','Device Approvals and Clearances',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/DeviceApprovalsandClearances/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_0_0=g_navNode_2_0_0.addNode('3854','Recently-Approved Devices',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/DeviceApprovalsandClearances/Recently-ApprovedDevices/index.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_0_1=g_navNode_2_0_0.addNode('3855','510\x28k\x29 Clearances',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/DeviceApprovalsandClearances/510kClearances/index.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_0_2=g_navNode_2_0_0.addNode('3856','PMA Approvals',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/DeviceApprovalsandClearances/PMAApprovals/index.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_0_3=g_navNode_2_0_0.addNode('3857','HDE Approvals',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/DeviceApprovalsandClearances/HDEApprovals/index.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_1=g_navNode_2_0.addNode('1647','Home Health and Consumer',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/HomeHealthandConsumer/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_1_0=g_navNode_2_0_1.addNode('3547','Home Health Products',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/HomeHealthandConsumer/ConsumerandHomeHealthProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_1_1=g_navNode_2_0_1.addNode('3548','Consumer Products',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/HomeHealthandConsumer/ConsumerProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_1_1_0=g_navNode_2_0_1_1.addNode('3549','Contact Lenses',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/HomeHealthandConsumer/ConsumerProducts/ContactLenses/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-web-team','secondaryUrlVariableField==region1');
g_navNode_2_0_1_1_1=g_navNode_2_0_1_1.addNode('3550','Breast Pumps',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/HomeHealthandConsumer/ConsumerProducts/BreastPumps/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-web-team','secondaryUrlVariableField==region1');
g_navNode_2_0_2=g_navNode_2_0.addNode('1648','Surgery and Life Support',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/SurgeryandLifeSupport/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_2_0=g_navNode_2_0_2.addNode('3551','LASIK',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/SurgeryandLifeSupport/LASIK/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_3=g_navNode_2_0.addNode('1649','Dental Products',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/DentalProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_4=g_navNode_2_0.addNode('1650','Medical Tools and Supplies',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/MedicalToolsandSupplies/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_4_0=g_navNode_2_0_4.addNode('3552','Personal Protective Equipment',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/MedicalToolsandSupplies/PersonalProtectiveEquipment/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_4_1=g_navNode_2_0_4.addNode('3973','Hospital Beds',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/MedicalToolsandSupplies/HospitalBeds/index.htm','secondaryUrlVariableField==region1');
g_navNode_2_0_5=g_navNode_2_0.addNode('1651','Cosmetic Devices',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/CosmeticDevices/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_5_0=g_navNode_2_0_5.addNode('3553','Wrinkle Fillers',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/CosmeticDevices/WrinkleFillers/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_6=g_navNode_2_0.addNode('1652','Implants and Prosthetics',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/ImplantsandProsthetics/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_6_0=g_navNode_2_0_6.addNode('3555','Phakic Intraocular Lenses',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/ImplantsandProsthetics/PhakicIntraocularLenses/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_6_1=g_navNode_2_0_6.addNode('3556','Breast Implants',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/ImplantsandProsthetics/BreastImplants/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_6_2=g_navNode_2_0_6.addNode('3557','Cochlear Implants',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/ImplantsandProsthetics/CochlearImplants/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_0_7=g_navNode_2_0.addNode('3869','In Vitro Diagnostics',ssUrlPrefix + 'MedicalDevices/ProductsandMedicalProcedures/InVitroDiagnostics/index.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_1=g_navNode_2.addNode('1659','Medical Device Safety',ssUrlPrefix + 'MedicalDevices/Safety/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_1_0=g_navNode_2_1.addNode('1661','Alerts and Notices',ssUrlPrefix + 'MedicalDevices/Safety/AlertsandNotices/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_1_0_0=g_navNode_2_1_0.addNode('1666','Public Health Notifications',ssUrlPrefix + 'MedicalDevices/Safety/AlertsandNotices/PublicHealthNotifications/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_1_0_1=g_navNode_2_1_0.addNode('1668','Tips and Articles on Device Safety',ssUrlPrefix + 'MedicalDevices/Safety/AlertsandNotices/TipsandArticlesonDeviceSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_1_0_2=g_navNode_2_1_0.addNode('1667','Patient Alerts',ssUrlPrefix + 'MedicalDevices/Safety/AlertsandNotices/PatientAlerts/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_1_0_3=g_navNode_2_1_0.addNode('3558','Fraudulent Devices',ssUrlPrefix + 'MedicalDevices/Safety/AlertsandNotices/FraudulentDevices/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-web-team','secondaryUrlVariableField==region1');
g_navNode_2_1_1=g_navNode_2_1.addNode('1662','Medical Device Recalls',ssUrlPrefix + 'MedicalDevices/Safety/RecallsCorrectionsRemovals/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_1_1_0=g_navNode_2_1_1.addNode('1670','List of Recalls',ssUrlPrefix + 'MedicalDevices/Safety/RecallsCorrectionsRemovals/ListofRecalls/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_1_2=g_navNode_2_1.addNode('1663','Report a Problem',ssUrlPrefix + 'MedicalDevices/Safety/ReportaProblem/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_1_2_0=g_navNode_2_1_2.addNode('1672','Forms and Instructions',ssUrlPrefix + 'MedicalDevices/Safety/ReportaProblem/FormsandInstructions/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_1_2_1=g_navNode_2_1_2.addNode('1673','General Information on Adverse Event Reporting Files ',ssUrlPrefix + 'MedicalDevices/Safety/ReportaProblem/GeneralInformationonAdverseEventReportingFiles/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_1_3=g_navNode_2_1.addNode('1664','MedSun\x3a Medical Product Safety Network',ssUrlPrefix + 'MedicalDevices/Safety/MedSunMedicalProductSafetyNetwork/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_1_4=g_navNode_2_1.addNode('1665','Emergency Situations',ssUrlPrefix + 'MedicalDevices/Safety/EmergencySituationsMedicaldevicesinhurricanesfloodinglossofpower\u2026/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2=g_navNode_2.addNode('1634','Device Regulation and Guidance',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_0=g_navNode_2_2.addNode('1675','Overview',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/Overview/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_0_0=g_navNode_2_2_0.addNode('1676','Is Your Product Regulated?',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/Overview/IsYourProductRegulated/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_0_1=g_navNode_2_2_0.addNode('1677','Device Classification',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/Overview/ClassifyYourDevice/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_0_2=g_navNode_2_2_0.addNode('1678','General and Special Controls',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/Overview/GeneralandSpecialControls/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_0_3=g_navNode_2_2_0.addNode('1679','Medical Device User Fee and Modernization Act \x28MDUFMA\x29',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/Overview/MedicalDeviceUserFeeandModernizationActMDUFMA/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_0_4=g_navNode_2_2_0.addNode('1680','Device Labeling',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/Overview/DeviceLabeling/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_0_4_0=g_navNode_2_2_0_4.addNode('3659','General Device Labeling Requirements',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/Overview/DeviceLabeling/GeneralDeviceLabelingRequirements/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_0_4_1=g_navNode_2_2_0_4.addNode('3660','In Vitro Diagnostic Device Labeling Requirements',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/Overview/DeviceLabeling/InVitroDiagnosticDeviceLabelingRequirements/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_0_4_2=g_navNode_2_2_0_4.addNode('3661','Quality System Regulation Labeling Requirements',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/Overview/DeviceLabeling/QualitySystemRegulationLabelingRequirements/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_0_4_3=g_navNode_2_2_0_4.addNode('3662','Labeling Requirements for Radiation Emitting Devices and Products',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/Overview/DeviceLabeling/LabelingRequirementsforRadiationEmittingDevicesandProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_0_5=g_navNode_2_2_0.addNode('3559','Bioresearch Monitoring',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/Overview/BioresearchMonitoring/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_1=g_navNode_2_2.addNode('1635','How to Market Your Device',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/HowtoMarketYourDevice/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_1_0=g_navNode_2_2_1.addNode('1692','Investigational Device Exemption \x28IDE\x29',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/HowtoMarketYourDevice/InvestigationalDeviceExemptionIDE/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_1_1=g_navNode_2_2_1.addNode('1693','Premarket Submissions',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/HowtoMarketYourDevice/PremarketSubmissions/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_1_1_0=g_navNode_2_2_1_1.addNode('1695','Premarket Notification \x28510k\x29',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/HowtoMarketYourDevice/PremarketSubmissions/PremarketNotification510k/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_1_1_1=g_navNode_2_2_1_1.addNode('3593','Premarket Approval \x28PMA\x29',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/HowtoMarketYourDevice/PremarketSubmissions/PremarketApprovalPMA/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_1_1_2=g_navNode_2_2_1_1.addNode('3594','Humanitarian Device Exemption',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/HowtoMarketYourDevice/PremarketSubmissions/HumanitarianDeviceExemption/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_1_1_3=g_navNode_2_2_1_1.addNode('3596','Summary Technical Document \x28STED\x29 Pilot Program',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/HowtoMarketYourDevice/PremarketSubmissions/SummaryTechnicalDocumentSTEDPilotProgram/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_1_1_4=g_navNode_2_2_1_1.addNode('3847','Third Party Review',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/HowtoMarketYourDevice/PremarketSubmissions/ThirdParyReview/index.htm','secondaryUrlVariableField==region1');
g_navNode_2_2_1_2=g_navNode_2_2_1.addNode('1694','Registration and Listing',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/HowtoMarketYourDevice/RegistrationandListing/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_2=g_navNode_2_2.addNode('1636','Postmarket Requirements',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/RegistrationandListing/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_2_0=g_navNode_2_2_2.addNode('1637','Quality Systems Regulations',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/RegistrationandListing/EstablishmentRegistration/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_2_0_0=g_navNode_2_2_2_0.addNode('3848','Medical Device Quality Systems Manual',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/RegistrationandListing/EstablishmentRegistration/MedicalDeviceQualitySystemsManual/index.htm','secondaryUrlVariableField==region1');
g_navNode_2_2_2_1=g_navNode_2_2_2.addNode('3560','Human Factors',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/RegistrationandListing/HumanFactors/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-web-team','secondaryUrlVariableField==region1');
g_navNode_2_2_2_2=g_navNode_2_2_2.addNode('1638','Reporting Adverse Events',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/RegistrationandListing/EstablishmentRegistrationRecords/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_2_3=g_navNode_2_2_2.addNode('1639','Recalls, Corrections and Removals',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/RegistrationandListing/Definitions/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_2_4=g_navNode_2_2_2.addNode('1640','Medical Device Tracking',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/RegistrationandListing/HowtoRegister/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_2_5=g_navNode_2_2_2.addNode('1641','Postmarket Surveillance',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/RegistrationandListing/UpdatingRegistrationData/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_2_5_0=g_navNode_2_2_2_5.addNode('1642','Post-Approval Studies',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/RegistrationandListing/UpdatingRegistrationData/WaiversforElectronicSubmissionofEstablishmentRegistration/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-web-team','secondaryUrlVariableField==region1');
g_navNode_2_2_2_6=g_navNode_2_2_2.addNode('3846','Third Party Inspection',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/RegistrationandListing/ThirdPartyInspection/index.htm','secondaryUrlVariableField==region1');
g_navNode_2_2_3=g_navNode_2_2.addNode('3971','Compliance Activities',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/ComplianceActivities/index.htm','secondaryUrlVariableField==region1');
g_navNode_2_2_4=g_navNode_2_2.addNode('1643','Databases',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/FrequentlyAskedQuestions/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_5=g_navNode_2_2.addNode('1706','Guidance Documents',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/GuidanceDocuments/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_6=g_navNode_2_2.addNode('1707','Standards',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/Standards/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_7=g_navNode_2_2.addNode('1708','Reprocessing of Single-Use Devices',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/ReprocessingofSingle-UseDevices/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_8=g_navNode_2_2.addNode('1709','Importing and Exporting Devices',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/ImportingandExportingDevices/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_9=g_navNode_2_2.addNode('1710','International Information',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/InternationalInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_10=g_navNode_2_2.addNode('3567','Unique Device Identifiers',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentifiers/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_2_11=g_navNode_2_2.addNode('3972','IVD Regulatory Assistance',ssUrlPrefix + 'MedicalDevices/DeviceRegulationandGuidance/IVDRegulatoryAssistance/index.htm','secondaryUrlVariableField==region1');
g_navNode_2_3=g_navNode_2.addNode('1716','Science and Research',ssUrlPrefix + 'MedicalDevices/ScienceandResearch/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_2_3_0=g_navNode_2_3.addNode('1717','Research Areas',ssUrlPrefix + 'MedicalDevices/ScienceandResearch/ResearchAreas/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_3_0_0=g_navNode_2_3_0.addNode('3568','Biology',ssUrlPrefix + 'MedicalDevices/ScienceandResearch/ResearchAreas/Biology/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_3_0_1=g_navNode_2_3_0.addNode('3569','Physics',ssUrlPrefix + 'MedicalDevices/ScienceandResearch/ResearchAreas/Physics/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_3_0_2=g_navNode_2_3_0.addNode('3570','Chemistry and Materials Science',ssUrlPrefix + 'MedicalDevices/ScienceandResearch/ResearchAreas/ChemistryandMaterialsScience/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_3_0_3=g_navNode_2_3_0.addNode('3571','Solid and Fluid Mechanics',ssUrlPrefix + 'MedicalDevices/ScienceandResearch/ResearchAreas/SolidandFluidMechanics/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_3_0_4=g_navNode_2_3_0.addNode('3572','Imaging and Applied Mathematics',ssUrlPrefix + 'MedicalDevices/ScienceandResearch/ResearchAreas/ImagingandAppliedMathematics/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_3_0_5=g_navNode_2_3_0.addNode('3573','Electrical and Software Engineering',ssUrlPrefix + 'MedicalDevices/ScienceandResearch/ResearchAreas/ElectricalandSoftwareEngineering/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_3_1=g_navNode_2_3.addNode('1718','Selected Scientific Publications \x26 Presentations',ssUrlPrefix + 'MedicalDevices/ScienceandResearch/SelectedScientificPublicationsPresentations/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_3_2=g_navNode_2_3.addNode('1719','Research Offices, Divisions, \x26 Labs at FDA',ssUrlPrefix + 'MedicalDevices/ScienceandResearch/ResearchOfficesDivisionsLabsatFDA/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_3_3=g_navNode_2_3.addNode('3574','Partnerships and Collaborations',ssUrlPrefix + 'MedicalDevices/ScienceandResearch/PartnershipsandCollaborations/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_4=g_navNode_2.addNode('1728','News \x26 Events',ssUrlPrefix + 'MedicalDevices/NewsEvents/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_4_0=g_navNode_2_4.addNode('1729','News',ssUrlPrefix + 'MedicalDevices/NewsEvents/News/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_4_1=g_navNode_2_4.addNode('1730','Newsletters',ssUrlPrefix + 'MedicalDevices/NewsEvents/Newsletters/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_4_1_0=g_navNode_2_4_1.addNode('1731','FDA \x26 You',ssUrlPrefix + 'MedicalDevices/NewsEvents/Newsletters/FDAYou/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_4_1_1=g_navNode_2_4_1.addNode('1732','Maturity Health Matters',ssUrlPrefix + 'MedicalDevices/NewsEvents/Newsletters/MaturityHealthMatters/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_4_2=g_navNode_2_4.addNode('1733','Video News',ssUrlPrefix + 'MedicalDevices/NewsEvents/VideoNews/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_4_2_0=g_navNode_2_4_2.addNode('1734','FDA Patient Safety News',ssUrlPrefix + 'MedicalDevices/NewsEvents/VideoNews/FDAPatientSafetyNews/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_4_3=g_navNode_2_4.addNode('1735','Workshops \x26 Conferences',ssUrlPrefix + 'MedicalDevices/NewsEvents/WorkshopsConferences/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_4_3_0=g_navNode_2_4_3.addNode('1736','Meetings',ssUrlPrefix + 'MedicalDevices/NewsEvents/WorkshopsConferences/Meetings/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_4_3_1=g_navNode_2_4_3.addNode('1737','Presentations',ssUrlPrefix + 'MedicalDevices/NewsEvents/WorkshopsConferences/Presentations/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_5=g_navNode_2.addNode('1738','Resources for You',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_5_0=g_navNode_2_5.addNode('1739','Consumers',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/Consumers/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_5_0_0=g_navNode_2_5_0.addNode('1742','Choosing a Medical Device',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/Consumers/ChoosingaMedicalDevice/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_5_0_0_0=g_navNode_2_5_0_0.addNode('1748','Buying online',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/Consumers/ChoosingaMedicalDevice/Buyingonline/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_5_0_0_0_0=g_navNode_2_5_0_0_0.addNode('1749','Buying \x26 Selling on eBay',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/Consumers/ChoosingaMedicalDevice/Buyingonline/BuyingSellingoneBay/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-web-team','secondaryUrlVariableField==region1');
g_navNode_2_5_0_0_0_1=g_navNode_2_5_0_0_0.addNode('1750','How to judge a medical website',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/Consumers/ChoosingaMedicalDevice/Buyingonline/BuyingSellingoneBay/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-web-team','secondaryUrlVariableField==region1');
g_navNode_2_5_0_1=g_navNode_2_5_0.addNode('3576','Buying Medical Devices and Diagnostic Tests Online',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/Consumers/BuyingMedicalDevicesandDiagnosticTestsOnline/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_5_0_2=g_navNode_2_5_0.addNode('1745','Home Safety',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/Consumers/HomeSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_5_0_3=g_navNode_2_5_0.addNode('3577','Disease-Specific Information',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/Consumers/Disease-SpecificInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_5_0_3_0=g_navNode_2_5_0_3.addNode('3578','Diabetes',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/Consumers/Disease-SpecificInformation/Diabetes/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_5_0_3_1=g_navNode_2_5_0_3.addNode('3579','Heart Health Online',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/Consumers/Disease-SpecificInformation/HeartHealthOnline/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_5_1=g_navNode_2_5.addNode('1740','Industry',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/Industry/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_2_5_1_0=g_navNode_2_5_1.addNode('3954','CeSub Electronic Submissions',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/Industry/CeSubElectronicSubmissions/index.htm','secondaryUrlVariableField==region1');
g_navNode_2_5_2=g_navNode_2_5.addNode('1741','Health Care Providers',ssUrlPrefix + 'MedicalDevices/ResourcesforYou/HealthCareProviders/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_3=g_navNode_Root.addNode('1338','Biologics, Blood \x26 Vaccines ',ssUrlPrefix + 'BiologicsBloodVaccines/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam, fdagov-appr-oerwebteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','cspUseParentNav==FALSE','secondaryUrlVariableField==region1');
g_navNode_3_0=g_navNode_3.addNode('1475','Allergenics',ssUrlPrefix + 'BiologicsBloodVaccines/Allergenics/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_0_0=g_navNode_3_0.addNode('1477','Standardized Allergenic Extracts',ssUrlPrefix + 'BiologicsBloodVaccines/Allergenics/StandardizedAllergenicExtracts/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1=g_navNode_3.addNode('1432','Blood \x26 Blood Products',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_0=g_navNode_3_1.addNode('1433','Questions about Blood',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/QuestionsaboutBlood/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','cspUseParentNav==FALSE','secondaryUrlVariableField==region1');
g_navNode_3_1_0_0=g_navNode_3_1_0.addNode('1434','Donating Blood',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/QuestionsaboutBlood/DonatingBlood/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1=g_navNode_3_1.addNode('1437','Approved Products',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0=g_navNode_3_1_1.addNode('1438','Licensed Products \x28BLAs\x29',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_0=g_navNode_3_1_1_0.addNode('1439','Fractionated Plasma Products',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/FractionatedPlasmaProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_0_0=g_navNode_3_1_1_0_0.addNode('3828','Albumin',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/FractionatedPlasmaProducts/Albumin/index.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_0_1=g_navNode_3_1_1_0_0.addNode('1440','Alpha-1-Proteinase Inhibitor',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/FractionatedPlasmaProducts/Alpha-1-ProteinaseInhibitor/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_0_2=g_navNode_3_1_1_0_0.addNode('1441','Antihemophilic Factor',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/FractionatedPlasmaProducts/AntihemophilicFactor/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_0_3=g_navNode_3_1_1_0_0.addNode('3829','Antihemophilic Factor/von Willebrand Factor Complex',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/FractionatedPlasmaProducts/AntihemophilicFactorvonWillebrandFactorComplex/index.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_0_4=g_navNode_3_1_1_0_0.addNode('3830','C1 Esterase Inhibitor',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/FractionatedPlasmaProducts/C1EsteraseInhibitor/index.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_0_5=g_navNode_3_1_1_0_0.addNode('1442','Coagulation Factors',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/FractionatedPlasmaProducts/CoagulationFactor/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_0_6=g_navNode_3_1_1_0_0.addNode('3831','Fibrin',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/FractionatedPlasmaProducts/Fibrin/index.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_0_7=g_navNode_3_1_1_0_0.addNode('3918','Fibrinogen',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/FractionatedPlasmaProducts/Fibrinogen/index.htm','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_0_8=g_navNode_3_1_1_0_0.addNode('1444','Immune Globulin',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/FractionatedPlasmaProducts/ImmuneGlobulin/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_0_9=g_navNode_3_1_1_0_0.addNode('3832','Protein C',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/FractionatedPlasmaProducts/ProteinC/index.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_0_10=g_navNode_3_1_1_0_0.addNode('3833','Thrombin',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/FractionatedPlasmaProducts/Thrombin/index.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_1=g_navNode_3_1_1_0.addNode('1446','Blood Donor Screening',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/BloodDonorScreening/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_1_0=g_navNode_3_1_1_0_1.addNode('1447','Infectious Disease Tests',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/BloodDonorScreening/InfectiousDisease/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_0_1_1=g_navNode_3_1_1_0_1.addNode('1448','Blood Grouping and Phenotyping Reagents',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/LicensedProductsBLAs/BloodDonorScreening/BloodGroupingReagent/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_1=g_navNode_3_1_1.addNode('1450','New Drug Applications \x28NDAs\x29',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/NewDrugApplicationsNDAs/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_2=g_navNode_3_1_1.addNode('1451','Premarket Approvals \x28PMAs\x29',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/PremarketApprovalsPMAs/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_1_3=g_navNode_3_1_1.addNode('1452','Substantially Equivalent 510\x28k\x29 Device Information',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/ApprovedProducts/SubstantiallyEquivalent510kDeviceInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_2=g_navNode_3_1.addNode('1456','Regulation of the Blood Supply',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/RegulationoftheBloodSupply/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_2_0=g_navNode_3_1_2.addNode('1457','Variances',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/RegulationoftheBloodSupply/Variances/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_2_1=g_navNode_3_1_2.addNode('1458','Exceptions and Alternative Procedures',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/RegulationoftheBloodSupply/ExceptionsandAlternativeProcedures/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_1_2_2=g_navNode_3_1_2.addNode('1459','Review Checklist',ssUrlPrefix + 'BiologicsBloodVaccines/BloodBloodProducts/RegulationoftheBloodSupply/ReviewChecklist/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_2=g_navNode_3.addNode('1478','Cellular \x26 Gene Therapy Products',ssUrlPrefix + 'BiologicsBloodVaccines/CellularGeneTherapyProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_2_0=g_navNode_3_2.addNode('1479','Approved Products',ssUrlPrefix + 'BiologicsBloodVaccines/CellularGeneTherapyProducts/ApprovedProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_2_1=g_navNode_3_2.addNode('3331','Cloning',ssUrlPrefix + 'BiologicsBloodVaccines/CellularGeneTherapyProducts/Cloning/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_3=g_navNode_3.addNode('1510','Development \x26 Approval Process',ssUrlPrefix + 'BiologicsBloodVaccines/DevelopmentApprovalProcess/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_3_0=g_navNode_3_3.addNode('3961','Advertising \x26 Promotional Labeling',ssUrlPrefix + 'BiologicsBloodVaccines/DevelopmentApprovalProcess/AdvertisingLabelingPromotionalMaterials/index.htm','secondaryUrlVariableField==region1');
g_navNode_3_3_0_0=g_navNode_3_3_0.addNode('3962','Bar Code Label Requirements',ssUrlPrefix + 'BiologicsBloodVaccines/DevelopmentApprovalProcess/AdvertisingLabelingPromotionalMaterials/BarCodeLabelRequirements/index.htm','secondaryUrlVariableField==region1');
g_navNode_3_3_0_1=g_navNode_3_3_0.addNode('3963','International Society of Blood Transfusion \x28ISBT\x29',ssUrlPrefix + 'BiologicsBloodVaccines/DevelopmentApprovalProcess/AdvertisingLabelingPromotionalMaterials/InternationalSocietyofBloodTransfusionISBT/index.htm');
g_navNode_3_3_1=g_navNode_3_3.addNode('1511','Investigational New Drug \x28IND\x29 or Device Exemption \x28IDE\x29 Process',ssUrlPrefix + 'BiologicsBloodVaccines/DevelopmentApprovalProcess/InvestigationalNewDrugINDorDeviceExemptionIDEProcess/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_3_2=g_navNode_3_3.addNode('1514','Premarket Approval \x28PMA\x29 Process',ssUrlPrefix + 'BiologicsBloodVaccines/DevelopmentApprovalProcess/PremarketApprovalPMAProcess/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_3_3=g_navNode_3_3.addNode('1515','Biologics License Applications \x28BLA\x29 Process',ssUrlPrefix + 'BiologicsBloodVaccines/DevelopmentApprovalProcess/BiologicsLicenseApplicationsBLAProcess/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_3_4=g_navNode_3_3.addNode('1518','New Drug Application \x28NDA\x29 Process',ssUrlPrefix + 'BiologicsBloodVaccines/DevelopmentApprovalProcess/NewDrugApplicationNDAProcess/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_3_5=g_navNode_3_3.addNode('1519','510\x28k\x29 Process',ssUrlPrefix + 'BiologicsBloodVaccines/DevelopmentApprovalProcess/510kProcess/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_3_6=g_navNode_3_3.addNode('1521','Manufacturing Questions',ssUrlPrefix + 'BiologicsBloodVaccines/DevelopmentApprovalProcess/ManufacturingQuestions/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4=g_navNode_3.addNode('1522','Guidance, Compliance \x26 Regulatory Information',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_0=g_navNode_3_4.addNode('1523','Acts, Rules \x26 Regulations',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/ActsRulesRegulations/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_0_0=g_navNode_3_4_0.addNode('1524','General',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/ActsRulesRegulations/General/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_0_1=g_navNode_3_4_0.addNode('1525','Blood Proposed \x26 Final Rules',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/ActsRulesRegulations/BloodProposedFinalRules/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_0_2=g_navNode_3_4_0.addNode('1526','Vaccine Proposed \x26 Final Rules',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/ActsRulesRegulations/VaccineProposedFinalRules/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_0_3=g_navNode_3_4_0.addNode('1527','Tissue Proposed \x26 Final Rules',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/ActsRulesRegulations/TissueProposedFinalRules/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_1=g_navNode_3_4.addNode('1529','Guidances',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/Guidances/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_1_0=g_navNode_3_4_1.addNode('3762','General',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/Guidances/General/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_1_1=g_navNode_3_4_1.addNode('3763','Allergenics',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/Guidances/Allergenics/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_1_2=g_navNode_3_4_1.addNode('3764','Blood',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/Guidances/Blood/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_1_3=g_navNode_3_4_1.addNode('3765','Cellular and Gene Therapy',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/Guidances/CellularandGeneTherapy/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_1_4=g_navNode_3_4_1.addNode('3766','Tissue',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/Guidances/Tissue/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_1_5=g_navNode_3_4_1.addNode('3767','Vaccines',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/Guidances/Vaccines/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_1_6=g_navNode_3_4_1.addNode('3768','Xenotransplantation',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/Guidances/Xenotransplantation/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_2=g_navNode_3_4.addNode('1530','Other Recommendations for Manufacturers',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/OtherRecommendationsforManufacturers/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_2_0=g_navNode_3_4_2.addNode('1531','Memorandum to Blood Establishments',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/OtherRecommendationsforManufacturers/MemorandumtoBloodEstablishments/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_3=g_navNode_3_4.addNode('1533','Procedures \x28SOPPs\x29',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/ProceduresSOPPs/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_4=g_navNode_3_4.addNode('1534','Establishment Registration',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/EstablishmentRegistration/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_4_0=g_navNode_3_4_4.addNode('1535','Blood Establishment Registration',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/EstablishmentRegistration/BloodEstablishmentRegistration/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_4_0_0=g_navNode_3_4_4_0.addNode('1536','Find a Blood Establishment',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/EstablishmentRegistration/BloodEstablishmentRegistration/FindaBloodEstablishment/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_4_1=g_navNode_3_4_4.addNode('1537','Tissue Establishment Registration',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/EstablishmentRegistration/TissueEstablishmentRegistration/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_4_1_0=g_navNode_3_4_4_1.addNode('1538','Find a Tissue Establishment',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/EstablishmentRegistration/TissueEstablishmentRegistration/FindaTissueEstablishment/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_5=g_navNode_3_4.addNode('1539','Compliance Activities',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/ComplianceActivities/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_5_0=g_navNode_3_4_5.addNode('1540','Enforcement',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/ComplianceActivities/Enforcement/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_5_0_0=g_navNode_3_4_5_0.addNode('3916','Untitled Letters',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/ComplianceActivities/Enforcement/UntitledLetters/index.htm','secondaryUrlVariableField==region1');
g_navNode_3_4_5_0_1=g_navNode_3_4_5_0.addNode('3917','Compliance Programs',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/ComplianceActivities/Enforcement/CompliancePrograms/index.htm','secondaryUrlVariableField==region1');
g_navNode_3_4_5_1=g_navNode_3_4_5.addNode('1541','Product Surveillance',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/ComplianceActivities/ProductSurveillance/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_6=g_navNode_3_4.addNode('1542','Post-Market Activities',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/Post-MarketActivities/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_6_0=g_navNode_3_4_6.addNode('1543','Lot Releases',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/Post-MarketActivities/LotReleases/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_4_6_1=g_navNode_3_4_6.addNode('1544','Postmarketing Clinical Trials',ssUrlPrefix + 'BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation/Post-MarketActivities/Phase4Trials/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_5=g_navNode_3.addNode('1549','News \x26 Events',ssUrlPrefix + 'BiologicsBloodVaccines/NewsEvents/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_5_0=g_navNode_3_5.addNode('1550','What\u2019s New for Biologics',ssUrlPrefix + 'BiologicsBloodVaccines/NewsEvents/What\u2019sNewforBiologics/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_5_1=g_navNode_3_5.addNode('1551','Workshops, Meetings \x26 Conferences',ssUrlPrefix + 'BiologicsBloodVaccines/NewsEvents/WorkshopsMeetingsConferences/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_5_1_0=g_navNode_3_5_1.addNode('1552','Upcoming',ssUrlPrefix + 'BiologicsBloodVaccines/NewsEvents/WorkshopsMeetingsConferences/Upcoming/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_5_1_1=g_navNode_3_5_1.addNode('1553','Past',ssUrlPrefix + 'BiologicsBloodVaccines/NewsEvents/WorkshopsMeetingsConferences/Past/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_5_1_1_0=g_navNode_3_5_1_1.addNode('1554','Presentations',ssUrlPrefix + 'BiologicsBloodVaccines/NewsEvents/WorkshopsMeetingsConferences/Past/Presentations/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_5_1_1_1=g_navNode_3_5_1_1.addNode('1555','Transcripts \x26 Minutes',ssUrlPrefix + 'BiologicsBloodVaccines/NewsEvents/WorkshopsMeetingsConferences/Past/TranscriptsMinutes/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_6=g_navNode_3.addNode('1556','Resources for You',ssUrlPrefix + 'BiologicsBloodVaccines/ResourcesforYou/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_3_6_0=g_navNode_3_6.addNode('1557','Consumers',ssUrlPrefix + 'BiologicsBloodVaccines/ResourcesforYou/Consumers/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_6_1=g_navNode_3_6.addNode('1558','Healthcare Providers',ssUrlPrefix + 'BiologicsBloodVaccines/ResourcesforYou/HealthcareProviders/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_6_2=g_navNode_3_6.addNode('1559','Industry',ssUrlPrefix + 'BiologicsBloodVaccines/ResourcesforYou/Industry/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_6_3=g_navNode_3_6.addNode('3982','Clinical Investigators',ssUrlPrefix + 'BiologicsBloodVaccines/ResourcesforYou/ClinicalInvestigators/index.htm','secondaryUrlVariableField==region1');
g_navNode_3_7=g_navNode_3.addNode('1487','Safety \x26 Availability',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_0=g_navNode_3_7.addNode('1488','Recalls',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/Recalls/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_1=g_navNode_3_7.addNode('1489','Shortages',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/Shortages/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_2=g_navNode_3_7.addNode('1490','Report a Problem',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/ReportaProblem/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_2_0=g_navNode_3_7_2.addNode('1491','Biological Product Deviations',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/ReportaProblem/BiologicalProductDeviations/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_2_1=g_navNode_3_7_2.addNode('3981','Good Tissue Practices \x28GTP\x29 \x26 Reporting',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/ReportaProblem/GoodTissuePracticesGTPReporting/index.htm','secondaryUrlVariableField==region1');
g_navNode_3_7_2_2=g_navNode_3_7_2.addNode('1492','Transfusion/Donation Fatalities',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/ReportaProblem/TransfusionDonationFatalities/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_2_3=g_navNode_3_7_2.addNode('1493','Vaccine Adverse Events',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/ReportaProblem/VaccineAdverseEvents/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_2_3_0=g_navNode_3_7_2_3.addNode('1494','Overview ',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/ReportaProblem/VaccineAdverseEvents/Overview/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_2_3_1=g_navNode_3_7_2_3.addNode('1495','Questions about the Vaccine Adverse Event Reporting System \x28VAERS\x29 ',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/ReportaProblem/VaccineAdverseEvents/QuestionsabouttheVaccineAdverseEventReportingSystemVAERS/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_3=g_navNode_3_7.addNode('1496','Blood Safety \x26 Availability',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/BloodSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_4=g_navNode_3_7.addNode('1503','HIV Home Test Kits',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/HIVHomeTestKits/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_5=g_navNode_3_7.addNode('1504','Vaccine Safety \x26 Availability',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/VaccineSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_6=g_navNode_3_7.addNode('1509','Tissue Safety \x26 Availability',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/TissueSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_7_7=g_navNode_3_7.addNode('3952','Product Security',ssUrlPrefix + 'BiologicsBloodVaccines/SafetyAvailability/ProductSecurity/index.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_8=g_navNode_3.addNode('1545','Science \x26 Research',ssUrlPrefix + 'BiologicsBloodVaccines/ScienceResearch/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_8_0=g_navNode_3_8.addNode('1546','Collaborative Scientific Training Program',ssUrlPrefix + 'BiologicsBloodVaccines/ScienceResearch/CollaborativeScientificTrainingProgram/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_8_1=g_navNode_3_8.addNode('3750','Biologics Research Projects',ssUrlPrefix + 'BiologicsBloodVaccines/ScienceResearch/BiologicsResearchAreas/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_8_1_0=g_navNode_3_8_1.addNode('3769','General',ssUrlPrefix + 'BiologicsBloodVaccines/ScienceResearch/BiologicsResearchAreas/General/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_8_1_1=g_navNode_3_8_1.addNode('3770','Allergenics',ssUrlPrefix + 'BiologicsBloodVaccines/ScienceResearch/BiologicsResearchAreas/Allergenics/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_8_1_2=g_navNode_3_8_1.addNode('3771','Blood',ssUrlPrefix + 'BiologicsBloodVaccines/ScienceResearch/BiologicsResearchAreas/Blood/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_8_1_3=g_navNode_3_8_1.addNode('3772','Cellular and Gene Therapy',ssUrlPrefix + 'BiologicsBloodVaccines/ScienceResearch/BiologicsResearchAreas/CellularandGeneTherapy/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_8_1_4=g_navNode_3_8_1.addNode('3773','Bacteriology',ssUrlPrefix + 'BiologicsBloodVaccines/ScienceResearch/BiologicsResearchAreas/Bacteriology/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_8_1_5=g_navNode_3_8_1.addNode('3774','Tissue',ssUrlPrefix + 'BiologicsBloodVaccines/ScienceResearch/BiologicsResearchAreas/Tissue/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_8_1_6=g_navNode_3_8_1.addNode('3775','Vaccines',ssUrlPrefix + 'BiologicsBloodVaccines/ScienceResearch/BiologicsResearchAreas/Vaccines/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_8_1_7=g_navNode_3_8_1.addNode('3776','Xenotransplantation',ssUrlPrefix + 'BiologicsBloodVaccines/ScienceResearch/BiologicsResearchAreas/Xenotransplantation/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_9=g_navNode_3.addNode('1482','Tissue \x26 Tissue Products',ssUrlPrefix + 'BiologicsBloodVaccines/TissueTissueProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_9_0=g_navNode_3_9.addNode('1483','Questions about Tissues',ssUrlPrefix + 'BiologicsBloodVaccines/TissueTissueProducts/QuestionsaboutTissues/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_9_1=g_navNode_3_9.addNode('3827','Regulation of Tissues',ssUrlPrefix + 'BiologicsBloodVaccines/TissueTissueProducts/RegulationofTissues/index.htm','secondaryUrlVariableField==region1');
g_navNode_3_9_1_0=g_navNode_3_9_1.addNode('1485','Exemptions and Alternative Procedures',ssUrlPrefix + 'BiologicsBloodVaccines/TissueTissueProducts/RegulationofTissues/ExemptionsandAlternativeProcedures/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_10=g_navNode_3.addNode('1460','Vaccines',ssUrlPrefix + 'BiologicsBloodVaccines/Vaccines/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_10_0=g_navNode_3_10.addNode('1461','Questions about Vaccines',ssUrlPrefix + 'BiologicsBloodVaccines/Vaccines/QuestionsaboutVaccines/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_10_1=g_navNode_3_10.addNode('1463','Approved Products',ssUrlPrefix + 'BiologicsBloodVaccines/Vaccines/ApprovedProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_3_11=g_navNode_3.addNode('1486','Xenotransplantation',ssUrlPrefix + 'BiologicsBloodVaccines/Xenotransplantation/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_4=g_navNode_Root.addNode('1340','Animal \x26 Veterinary',ssUrlPrefix + 'AnimalVeterinary/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam, fdagov-appr-oerwebteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_0=g_navNode_4.addNode('1379','Development \x26 Approval Process',ssUrlPrefix + 'AnimalVeterinary/DevelopmentApprovalProcess/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_0_0=g_navNode_4_0.addNode('3293','User Fees',ssUrlPrefix + 'AnimalVeterinary/DevelopmentApprovalProcess/UserFees/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_0_1=g_navNode_4_0.addNode('1389','Electronic Submissions',ssUrlPrefix + 'AnimalVeterinary/DevelopmentApprovalProcess/ElectronicSubmissions/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_0_2=g_navNode_4_0.addNode('3290','Minor Use/Minor Species',ssUrlPrefix + 'AnimalVeterinary/DevelopmentApprovalProcess/MinorUseMinorSpecies/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_0_3=g_navNode_4_0.addNode('3291','Environmental Assessments',ssUrlPrefix + 'AnimalVeterinary/DevelopmentApprovalProcess/EnvironmentalAssessments/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_0_4=g_navNode_4_0.addNode('3292','Genetic Engineering',ssUrlPrefix + 'AnimalVeterinary/DevelopmentApprovalProcess/GeneticEngineering/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_0_4_0=g_navNode_4_0_4.addNode('3296','Genetically Engineered Animals',ssUrlPrefix + 'AnimalVeterinary/DevelopmentApprovalProcess/GeneticEngineering/GeneticallyEngineeredAnimals/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_0_5=g_navNode_4_0.addNode('3653','New Animal Drug Applications',ssUrlPrefix + 'AnimalVeterinary/DevelopmentApprovalProcess/NewAnimalDrugApplications/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_0_6=g_navNode_4_0.addNode('3654','Aquaculture',ssUrlPrefix + 'AnimalVeterinary/DevelopmentApprovalProcess/Aquaculture/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_1=g_navNode_4.addNode('1390','Guidance, Compliance \x26 Enforcement',ssUrlPrefix + 'AnimalVeterinary/GuidanceComplianceEnforcement/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_1_0=g_navNode_4_1.addNode('1392','Acts, Rules \x26 Regulations',ssUrlPrefix + 'AnimalVeterinary/GuidanceComplianceEnforcement/ActsRulesRegulations/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_1_1=g_navNode_4_1.addNode('1393','Policies \x26 Procedures Manual',ssUrlPrefix + 'AnimalVeterinary/GuidanceComplianceEnforcement/PoliciesProceduresManual/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_1_2=g_navNode_4_1.addNode('3299','Guidance for Industry',ssUrlPrefix + 'AnimalVeterinary/GuidanceComplianceEnforcement/GuidanceforIndustry/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_1_3=g_navNode_4_1.addNode('1395','Compliance \x26 Enforcement',ssUrlPrefix + 'AnimalVeterinary/GuidanceComplianceEnforcement/ComplianceEnforcement/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_1_3_0=g_navNode_4_1_3.addNode('1398','Bovine Spongiform Encephalopathy',ssUrlPrefix + 'AnimalVeterinary/GuidanceComplianceEnforcement/ComplianceEnforcement/BovineSpongiformEncephalopathy/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_2=g_navNode_4.addNode('1411','News \x26 Events',ssUrlPrefix + 'AnimalVeterinary/NewsEvents/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_2_0=g_navNode_4_2.addNode('1417','CVM Updates',ssUrlPrefix + 'AnimalVeterinary/NewsEvents/CVMUpdates/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_2_1=g_navNode_4_2.addNode('1412','FDA Veterinarian Newsletter',ssUrlPrefix + 'AnimalVeterinary/NewsEvents/FDAVeterinarianNewsletter/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_2_2=g_navNode_4_2.addNode('3300','Workshops, Conferences \x26 Meetings',ssUrlPrefix + 'AnimalVeterinary/NewsEvents/WorkshopsConferencesMeetings/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3=g_navNode_4.addNode('1344','Products',ssUrlPrefix + 'AnimalVeterinary/Products/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3_0=g_navNode_4_3.addNode('1345','Approved Animal Drug Products',ssUrlPrefix + 'AnimalVeterinary/Products/ApprovedAnimalDrugProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3_0_0=g_navNode_4_3_0.addNode('1346','Drug Labels',ssUrlPrefix + 'AnimalVeterinary/Products/ApprovedAnimalDrugProducts/DrugLabels/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3_0_1=g_navNode_4_3_0.addNode('1347','FOIA Drug Summaries',ssUrlPrefix + 'AnimalVeterinary/Products/ApprovedAnimalDrugProducts/FOIADrugSummaries/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3_1=g_navNode_4_3.addNode('1350','Animal Food \x26 Feeds',ssUrlPrefix + 'AnimalVeterinary/Products/AnimalFoodFeeds/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3_1_0=g_navNode_4_3_1.addNode('1351','Ingredients \x26 Additives',ssUrlPrefix + 'AnimalVeterinary/Products/AnimalFoodFeeds/IngredientsAdditives/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3_1_1=g_navNode_4_3_1.addNode('1352','Contaminants',ssUrlPrefix + 'AnimalVeterinary/Products/AnimalFoodFeeds/Contaminants/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3_1_2=g_navNode_4_3_1.addNode('1355','Generally Recognized as Safe \x28GRAS\x29 Notifications',ssUrlPrefix + 'AnimalVeterinary/Products/AnimalFoodFeeds/GenerallyRecognizedasSafeGRASNotifications/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3_1_3=g_navNode_4_3_1.addNode('3731','Medicated Feeds',ssUrlPrefix + 'AnimalVeterinary/Products/AnimalFoodFeeds/MedicatedFeed/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3_1_3_0=g_navNode_4_3_1_3.addNode('3872','Blue Bird Labels',ssUrlPrefix + 'AnimalVeterinary/Products/AnimalFoodFeeds/MedicatedFeed/BlueBirdLabels/index.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3_1_4=g_navNode_4_3_1.addNode('1356','Pet Food',ssUrlPrefix + 'AnimalVeterinary/Products/AnimalFoodFeeds/PetFood/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3_2=g_navNode_4_3.addNode('1363','Import \x26 Exports',ssUrlPrefix + 'AnimalVeterinary/Products/ImportExports/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_3_3=g_navNode_4_3.addNode('3286','Frequently Asked Questions',ssUrlPrefix + 'AnimalVeterinary/Products/FrequentlyAskedQuestions/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_4=g_navNode_4.addNode('1418','Resources for You',ssUrlPrefix + 'AnimalVeterinary/ResourcesforYou/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_4_4_0=g_navNode_4_4.addNode('3924','Animal Health Literacy',ssUrlPrefix + 'AnimalVeterinary/ResourcesforYou/AnimalHealthLiteracy/index.htm','secondaryUrlVariableField==region1');
g_navNode_4_4_1=g_navNode_4_4.addNode('3893','FDA and the Veterinarian',ssUrlPrefix + 'AnimalVeterinary/ResourcesforYou/FDAandtheVeterinarian/index.htm','secondaryUrlVariableField==region1');
g_navNode_4_5=g_navNode_4.addNode('1366','Safety \x26 Health',ssUrlPrefix + 'AnimalVeterinary/SafetyHealth/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_5_0=g_navNode_4_5.addNode('1367','Report a Problem',ssUrlPrefix + 'AnimalVeterinary/SafetyHealth/ReportaProblem/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_5_1=g_navNode_4_5.addNode('1377','Recalls \x26 Withdrawals',ssUrlPrefix + 'AnimalVeterinary/SafetyHealth/RecallsWithdrawals/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_5_2=g_navNode_4_5.addNode('1373','Product Safety Information',ssUrlPrefix + 'AnimalVeterinary/SafetyHealth/ProductSafetyInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_5_3=g_navNode_4_5.addNode('1372','Animal Feed Safety System \x28AFSS\x29',ssUrlPrefix + 'AnimalVeterinary/SafetyHealth/AnimalFeedSafetySystemAFSS/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_5_4=g_navNode_4_5.addNode('1370','Antimicrobial Resistance',ssUrlPrefix + 'AnimalVeterinary/SafetyHealth/AntimicrobialResistance/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_5_4_0=g_navNode_4_5_4.addNode('1371','National Antimicrobial Resistance Monitoring System',ssUrlPrefix + 'AnimalVeterinary/SafetyHealth/AntimicrobialResistance/NationalAntimicrobialResistanceMonitoringSystem/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_5_4_1=g_navNode_4_5_4.addNode('3287','Judicious Use of Antimicrobials',ssUrlPrefix + 'AnimalVeterinary/SafetyHealth/AntimicrobialResistance/JudiciousUseofAntimicrobials/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_5_5=g_navNode_4_5.addNode('3288','Animal Cloning',ssUrlPrefix + 'AnimalVeterinary/SafetyHealth/AnimalCloning/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_5_6=g_navNode_4_5.addNode('3289','Frequently Asked Questions',ssUrlPrefix + 'AnimalVeterinary/SafetyHealth/FrequentlyAskedQuestions/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_6=g_navNode_4.addNode('1402','Science \x26 Research',ssUrlPrefix + 'AnimalVeterinary/ScienceResearch/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_4_6_0=g_navNode_4_6.addNode('1403','Research Areas',ssUrlPrefix + 'AnimalVeterinary/ScienceResearch/ResearchAreas/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_6_1=g_navNode_4_6.addNode('1408','Tools \x26 Resources',ssUrlPrefix + 'AnimalVeterinary/ScienceResearch/ToolsResources/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_4_6_1_0=g_navNode_4_6_1.addNode('3623','Phish-Pharm',ssUrlPrefix + 'AnimalVeterinary/ScienceResearch/ToolsResources/Phish-Pharm/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam');
g_navNode_5=g_navNode_Root.addNode('1341','Cosmetics',ssUrlPrefix + 'Cosmetics/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics, fdagov-appr-oerwebteam','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0=g_navNode_5.addNode('1765','Cosmetic Labeling \x26 Label Claims',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0_0=g_navNode_5_0.addNode('1812','Cosmetic Labeling\x3a An Overview',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/CosmeticLabelingAnOverview/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0_1=g_navNode_5_0.addNode('1813','Cosmetic Labeling Manual',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/CosmeticLabelingManual/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0_1_0=g_navNode_5_0_1.addNode('1815','Summary of Regulatory Requirements',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/CosmeticLabelingManual/SummaryofRegulatoryRequirements/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0_1_1=g_navNode_5_0_1.addNode('1816','Cosmetic Labeling Regulations',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/CosmeticLabelingManual/CosmeticLabelingRegulations/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0_1_2=g_navNode_5_0_1.addNode('1817','Cosmetic Labeling Guide',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/CosmeticLabelingManual/CosmeticLabelingGuide/default.htm','cspSectionApproverAlias==fdagov-appr-cos-cllc-clm-clg, fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0_2=g_navNode_5_0.addNode('1766','Industry Requests \x26 FDA Responses',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/IndustryRequestsFDAResponses/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0_3=g_navNode_5_0.addNode('1814','Label Claims and Expiration Dating',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/LabelClaimsandExpirationDating/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0_3_0=g_navNode_5_0_3.addNode('1818','Alcohol Free',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/LabelClaimsandExpirationDating/AlcoholFree/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0_3_1=g_navNode_5_0_3.addNode('1819','Cruelty Free/Not Tested on Animals',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/LabelClaimsandExpirationDating/CrueltyFreeNotTestedonAnimals/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0_3_2=g_navNode_5_0_3.addNode('1820','Hypoallergenic',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/LabelClaimsandExpirationDating/Hypoallergenic/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0_3_3=g_navNode_5_0_3.addNode('1821','Shelf Life/Expiration Date',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/LabelClaimsandExpirationDating/ShelfLifeExpirationDate/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_0_4=g_navNode_5_0.addNode('3868','Industry Requests \x26 FDA Responses',ssUrlPrefix + 'Cosmetics/CosmeticLabelingLabelClaims/IndustryRequestsFDAResponses/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1=g_navNode_5.addNode('1764','Guidance, Compliance \x26 Regulatory Information',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_0=g_navNode_5_1.addNode('1780','Acts, Rules \x26 Regulations',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/ActsRulesRegulations/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_0_0=g_navNode_5_1_0.addNode('1786','FDA Authority Over Cosmetics',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/ActsRulesRegulations/FDAAuthorityOverCosmetics/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_0_1=g_navNode_5_1_0.addNode('1787','What the Law Says About Cosmetics',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/ActsRulesRegulations/WhattheLawSaysAboutCosmetics/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_0_2=g_navNode_5_1_0.addNode('1788','Key Legal Concepts',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/ActsRulesRegulations/KeyLegalConcepts/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_0_3=g_navNode_5_1_0.addNode('1789','Regulations \x26 Federal Register Documents',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/ActsRulesRegulations/RegulationsFederalRegisterDocuments/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_1=g_navNode_5_1.addNode('1781','Guidance Documents',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/GuidanceDocuments/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_2=g_navNode_5_1.addNode('1782','Compliance \x26 Enforcement',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/ComplianceEnforcement/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_2_0=g_navNode_5_1_2.addNode('1790','Inspection of Cosmetics',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/ComplianceEnforcement/InspectionofCosmetics/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_2_1=g_navNode_5_1_2.addNode('1791','Warning Letters',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/ComplianceEnforcement/WarningLetters/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_2_2=g_navNode_5_1_2.addNode('1792','CFSAN/CDER Agreement',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/ComplianceEnforcement/CFSANCDERAgreement/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3=g_navNode_5_1.addNode('1783','Voluntary Cosmetics Registration Program \x28VCRP\x29',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_0=g_navNode_5_1_3.addNode('1793','Online Registration',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/OnlineRegistration/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_0_0=g_navNode_5_1_3_0.addNode('1797','Login/Submit Forms',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/OnlineRegistration/LoginSubmitForms/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_0_1=g_navNode_5_1_3_0.addNode('1798','Request New Account',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/OnlineRegistration/RequestNewAccount/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_0_2=g_navNode_5_1_3_0.addNode('1799','How to Complete Form FDA 2511',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/OnlineRegistration/HowtoCompleteFormFDA2511/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_0_3=g_navNode_5_1_3_0.addNode('1800','How to Complete Form FDA 2512',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/OnlineRegistration/HowtoCompleteFormFDA2512/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_0_4=g_navNode_5_1_3_0.addNode('1801','Resource Materials',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/OnlineRegistration/ResourceMaterials/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_0_5=g_navNode_5_1_3_0.addNode('1802','OMB Burden Statements',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/OnlineRegistration/OMBBurdenStatements/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_1=g_navNode_5_1_3.addNode('1794','Paper Submissions',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/PaperSubmissions/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_1_0=g_navNode_5_1_3_1.addNode('1803','How to File Your VCRP Forms',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/PaperSubmissions/HowtoFileYourVCRPForms/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_1_1=g_navNode_5_1_3_1.addNode('1804','Original Forms FDA 2512 and 2512a',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/PaperSubmissions/OriginalFormsFDA2512and2512a/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_1_2=g_navNode_5_1_3_1.addNode('1805','Amended Forms FDA 2512 and 2512a',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/PaperSubmissions/AmendedFormsFDA2512and2512a/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_1_3=g_navNode_5_1_3_1.addNode('1806','Form FDA 2514',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/PaperSubmissions/FormFDA2514/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_1_4=g_navNode_5_1_3_1.addNode('1807','Base Formulations on Forms FDA 2512 and 2512a',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/PaperSubmissions/BaseFormulationsonFormsFDA2512and2512a/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_1_5=g_navNode_5_1_3_1.addNode('1808','Reference Materials You Will Need',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/PaperSubmissions/ReferenceMaterialsYouWillNeed/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_1_6=g_navNode_5_1_3_1.addNode('1809','Forms',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/PaperSubmissions/Forms/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_2=g_navNode_5_1_3.addNode('1795','VCRP FAQ',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/VCRPFAQ/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_3_3=g_navNode_5_1_3.addNode('1796','VCRP Help',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/VoluntaryCosmeticsRegistrationProgramVCRP/VCRPHelp/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_1_4=g_navNode_5_1.addNode('1784','Good Manufacturing Practice \x28GMP\x29 Guidelines/Inspection Checklist',ssUrlPrefix + 'Cosmetics/GuidanceComplianceRegulatoryInformation/GoodManufacturingPracticeGMPGuidelinesInspectionChecklist/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_2=g_navNode_5.addNode('1767','International Activities',ssUrlPrefix + 'Cosmetics/InternationalActivities/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_5_2_0=g_navNode_5_2.addNode('1822','Cosmetics \x26 U.S. Law',ssUrlPrefix + 'Cosmetics/InternationalActivities/CosmeticsU.S.Law/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_2_1=g_navNode_5_2.addNode('1823','Conferences, Meetings \x26 Workshops',ssUrlPrefix + 'Cosmetics/InternationalActivities/ConferencesMeetingsWorkshops/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_2_1_0=g_navNode_5_2_1.addNode('1829','International Cooperation on Cosmetics Regulations \x28ICCR\x29',ssUrlPrefix + 'Cosmetics/InternationalActivities/ConferencesMeetingsWorkshops/InternationalCooperationonCosmeticsRegulationsICCR/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_2_1_1=g_navNode_5_2_1.addNode('1830','Cosmetics Harmonization \x26 International Cooperation \x28CHIC\x29',ssUrlPrefix + 'Cosmetics/InternationalActivities/ConferencesMeetingsWorkshops/CosmeticsHarmonizationInternationalCooperationCHIC/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_2_1_2=g_navNode_5_2_1.addNode('1831','US/EU Bilateral Meetings',ssUrlPrefix + 'Cosmetics/InternationalActivities/ConferencesMeetingsWorkshops/USEUBilateralMeetings/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_2_2=g_navNode_5_2.addNode('1824','Imports \x26 Exports',ssUrlPrefix + 'Cosmetics/InternationalActivities/ImportsExports/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_2_2_0=g_navNode_5_2_2.addNode('1832','Cosmetic Imports',ssUrlPrefix + 'Cosmetics/InternationalActivities/ImportsExports/CosmeticImports/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_2_2_0_0=g_navNode_5_2_2_0.addNode('1833','Import Surveillance',ssUrlPrefix + 'Cosmetics/InternationalActivities/ImportsExports/CosmeticImports/ImportSurveillance/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_2_2_1=g_navNode_5_2_2.addNode('1834','Cosmetic Exports',ssUrlPrefix + 'Cosmetics/InternationalActivities/ImportsExports/CosmeticExports/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_2_3=g_navNode_5_2.addNode('1825','International Harmonization of Nomenclature',ssUrlPrefix + 'Cosmetics/InternationalActivities/InternationalHarmonizationofNomenclature/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_2_4=g_navNode_5_2.addNode('1827','Regulatory Authorities in Other Countries',ssUrlPrefix + 'Cosmetics/InternationalActivities/RegulatoryAuthoritiesinOtherCountries/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_2_5=g_navNode_5_2.addNode('1828','International Trade Resources',ssUrlPrefix + 'Cosmetics/InternationalActivities/InternationalTradeResources/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3=g_navNode_5.addNode('1763','Product and Ingredient Safety',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3_0=g_navNode_5_3.addNode('3858','Product Information',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/ProductInformation/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3_0_0=g_navNode_5_3_0.addNode('3859','Hair Products',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/ProductInformation/HairProducts/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3_0_1=g_navNode_5_3_0.addNode('3860','Makeup',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/ProductInformation/Makeup/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3_0_2=g_navNode_5_3_0.addNode('3861','Tanning Products',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/ProductInformation/TanningProducts/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3_1=g_navNode_5_3.addNode('3862','Selected Cosmetic Ingredients',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/SelectedCosmeticIngredients/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3_1_0=g_navNode_5_3_1.addNode('3864','AHAs and BHAs',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/SelectedCosmeticIngredients/AHAsandBHAs/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3_2=g_navNode_5_3.addNode('3863','Potential Contaminants',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/PotentialContaminants/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3_2_0=g_navNode_5_3_2.addNode('3865','Bovine Spongiform Encephalopathy \x28BSE\x29 \x26 Cosmetics ',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/PotentialContaminants/BovineSpongiformEncephalopathyBSECosmetics/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3_2_0_0=g_navNode_5_3_2_0.addNode('3866','Risk Assessment',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/PotentialContaminants/BovineSpongiformEncephalopathyBSECosmetics/RiskAssessment/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3_2_0_1=g_navNode_5_3_2_0.addNode('3867','Imports \x26 Exports',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/PotentialContaminants/BovineSpongiformEncephalopathyBSECosmetics/ImportsExports/index.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3_3=g_navNode_5_3.addNode('1773','Product Testing',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/ProductTesting/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_3_4=g_navNode_5_3.addNode('1774','Recalls \x26 Alerts',ssUrlPrefix + 'Cosmetics/ProductandIngredientSafety/RecallsAlerts/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_4=g_navNode_5.addNode('1769','Resources For You',ssUrlPrefix + 'Cosmetics/ResourcesForYou/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_4_0=g_navNode_5_4.addNode('1835','Consumers',ssUrlPrefix + 'Cosmetics/ResourcesForYou/Consumers/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_4_0_0=g_navNode_5_4_0.addNode('1768','Cosmetics Q\x26A',ssUrlPrefix + 'Cosmetics/ResourcesForYou/Consumers/CosmeticsQA/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_4_1=g_navNode_5_4.addNode('1836','Cosmetics Manufacturers, Packagers \x26 Distributors',ssUrlPrefix + 'Cosmetics/ResourcesForYou/CosmeticsManufacturersPackagersDistributors/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_4_2=g_navNode_5_4.addNode('1837','En Espa\xf1ol',ssUrlPrefix + 'Cosmetics/ResourcesForYou/EnEspanol/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_5_4_3=g_navNode_5_4.addNode('1838','Other Languages',ssUrlPrefix + 'Cosmetics/ResourcesForYou/OtherLanguages/default.htm','cspSectionApproverAlias==fdagov-appr-cfsan-cosmetics','cspSectionEditorAlias==fdagov-edit-cfsan-cosmetics','secondaryUrlVariableField==region1');
g_navNode_6=g_navNode_Root.addNode('1339','Radiation-Emitting Products ',ssUrlPrefix + 'Radiation-EmittingProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam, fdagov-appr-oerwebteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_0=g_navNode_6.addNode('1560','Products',ssUrlPrefix + 'Radiation-EmittingProducts/Products/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_0_0=g_navNode_6_0.addNode('1561','Medical Imaging ',ssUrlPrefix + 'Radiation-EmittingProducts/Products/MedicalImaging/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_0_0_0=g_navNode_6_0_0.addNode('1562','Medical X-Rays',ssUrlPrefix + 'Radiation-EmittingProducts/Products/MedicalImaging/MedicalX-Rays/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_0_1=g_navNode_6_0.addNode('1570','Surgical and Therapeutic',ssUrlPrefix + 'Radiation-EmittingProducts/Products/SurgicalandTherapeutic/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_0_2=g_navNode_6_0.addNode('1575','Home, Business, and Entertainment',ssUrlPrefix + 'Radiation-EmittingProducts/Products/HomeBusinessandEntertainment/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_0_2_0=g_navNode_6_0_2.addNode('1576','Cell Phones',ssUrlPrefix + 'Radiation-EmittingProducts/Products/HomeBusinessandEntertainment/CellPhones/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_0_2_1=g_navNode_6_0_2.addNode('1577','Laser Products and Instruments',ssUrlPrefix + 'Radiation-EmittingProducts/Products/HomeBusinessandEntertainment/LaserProductsandInstruments/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_0_3=g_navNode_6_0.addNode('1583','Security Systems',ssUrlPrefix + 'Radiation-EmittingProducts/Products/SecuritySystems/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_0_4=g_navNode_6_0.addNode('1586','Tanning',ssUrlPrefix + 'Radiation-EmittingProducts/Products/Tanning/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_1=g_navNode_6.addNode('3302','Safety',ssUrlPrefix + 'Radiation-EmittingProducts/Safety/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_1_0=g_navNode_6_1.addNode('3306','Radiation Dose Reduction',ssUrlPrefix + 'Radiation-EmittingProducts/Safety/RadiationDoseReduction/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_1_1=g_navNode_6_1.addNode('3307','Nationwide Evaluation of X-Ray Trends\x28NEXT\x29',ssUrlPrefix + 'Radiation-EmittingProducts/Safety/NationwideEvaluationofX-RayTrendsNEXT/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_1_2=g_navNode_6_1.addNode('3308','Electromagnetic Compatibility\x28EMC\x29',ssUrlPrefix + 'Radiation-EmittingProducts/Safety/ElectromagneticCompatibilityEMC/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_1_3=g_navNode_6_1.addNode('3309','Alerts and Notices',ssUrlPrefix + 'Radiation-EmittingProducts/Safety/AlertsandNotices/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_1_4=g_navNode_6_1.addNode('3310','Report a Problem',ssUrlPrefix + 'Radiation-EmittingProducts/Safety/ReportaProblem/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_1_4_0=g_navNode_6_1_4.addNode('3580','Accidental Radiation Occurrence Reports',ssUrlPrefix + 'Radiation-EmittingProducts/Safety/ReportaProblem/AccidentalRadiationOccurrenceReports/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_1_4_1=g_navNode_6_1_4.addNode('3581','Notification of Defects or Failures to Comply',ssUrlPrefix + 'Radiation-EmittingProducts/Safety/ReportaProblem/NotificationofDefectsorFailurestoComply/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_1_5=g_navNode_6_1.addNode('3311','Emergency Situations',ssUrlPrefix + 'Radiation-EmittingProducts/Safety/EmergencySituations/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_2=g_navNode_6.addNode('1601','Mammography Quality Standards Act',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_2_0=g_navNode_6_2.addNode('1602','About the Mammography Program',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/AbouttheMammographyProgram/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_2_1=g_navNode_6_2.addNode('1603','Regulations',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/Regulations/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_2_2=g_navNode_6_2.addNode('1604','Guidance',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/Guidance/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_2_2_0=g_navNode_6_2_2.addNode('3582','Policy Guidance Help System',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/Guidance/PolicyGuidanceHelpSystem/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_2_2_0_0=g_navNode_6_2_2_0.addNode('3647','Accreditation and Certification',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/Guidance/PolicyGuidanceHelpSystem/AccreditationandCertification/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_2_2_0_1=g_navNode_6_2_2_0.addNode('3648','Additional Mammography Review and Patient Notification',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/Guidance/PolicyGuidanceHelpSystem/AdditionalMammographyReviewandPatientNotification/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_2_2_0_2=g_navNode_6_2_2_0.addNode('3649','Approved Alternative Standards/Requirements',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/Guidance/PolicyGuidanceHelpSystem/ApprovedAlternativeStandardsRequirements/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_2_3=g_navNode_6_2.addNode('1605','Facility Certification and Inspection',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/FacilityCertificationandInspection/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_2_4=g_navNode_6_2.addNode('1606','National Statistics',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/FacilityScorecard/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_2_5=g_navNode_6_2.addNode('1607','Reports',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/Reports/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_2_6=g_navNode_6_2.addNode('3970','Consumer Information',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/ConsumerInformation/index.htm','secondaryUrlVariableField==region1');
g_navNode_6_2_7=g_navNode_6_2.addNode('3583','Document Archives',ssUrlPrefix + 'Radiation-EmittingProducts/MammographyQualityStandardsAct/DocumentArchives/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3=g_navNode_6.addNode('1609','Electronic Product Radiation Control',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3_0=g_navNode_6_3.addNode('1610','Getting a Product to Market',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/GettingaProducttoMarket/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3_0_0=g_navNode_6_3_0.addNode('1611','General Requirements ',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/GettingaProducttoMarket/GeneralRequirements/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3_0_1=g_navNode_6_3_0.addNode('1612','Regulated Products',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/GettingaProducttoMarket/RegulatedProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3_0_2=g_navNode_6_3_0.addNode('1613','Performance Standards',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/GettingaProducttoMarket/PerformanceStandards/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3_0_3=g_navNode_6_3_0.addNode('1614','Certification',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/GettingaProducttoMarket/Certification/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3_0_4=g_navNode_6_3_0.addNode('1615','Records and Reporting',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/GettingaProducttoMarket/RecordsandReporting/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3_0_5=g_navNode_6_3_0.addNode('1616','Acknowledgement Letters and Accession Numbers',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/GettingaProducttoMarket/AcknowledgementLettersandAccessionNumbers/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3_0_6=g_navNode_6_3_0.addNode('1617','Importing and Exporting Electronic Products',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/GettingaProducttoMarket/ImportingandExportingElectronicProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3_0_7=g_navNode_6_3_0.addNode('1618','Additional Information',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/GettingaProducttoMarket/AdditionalInformation/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3_1=g_navNode_6_3.addNode('1620','Laws and Regulations',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/LawsandRegulations/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3_2=g_navNode_6_3.addNode('1621','Industry Guidance',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/IndustryGuidance/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_3_3=g_navNode_6_3.addNode('1622','CeSub Electronic Submission Program',ssUrlPrefix + 'Radiation-EmittingProducts/ElectronicProductRadiationControl/CeSubElectronicSubmissionProgram/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_4=g_navNode_6.addNode('1623','Science \x26 Research',ssUrlPrefix + 'Radiation-EmittingProducts/ScienceResearch/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_5=g_navNode_6.addNode('1631','News \x26 Events',ssUrlPrefix + 'Radiation-EmittingProducts/NewsEvents/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_6_5_0=g_navNode_6_5.addNode('3584','News',ssUrlPrefix + 'Radiation-EmittingProducts/NewsEvents/News/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_5_1=g_navNode_6_5.addNode('3585','Workshops and Conferences',ssUrlPrefix + 'Radiation-EmittingProducts/NewsEvents/WorkshopsandConferences/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_6=g_navNode_6.addNode('3303','FDA Radiological Health Program',ssUrlPrefix + 'Radiation-EmittingProducts/FDARadiologicalHealthProgram/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_7=g_navNode_6.addNode('3586','Resources for You',ssUrlPrefix + 'Radiation-EmittingProducts/ResourcesforYou/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_7_0=g_navNode_6_7.addNode('3587','Consumers',ssUrlPrefix + 'Radiation-EmittingProducts/ResourcesforYou/Consumers/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_7_1=g_navNode_6_7.addNode('3588','Health Care Providers',ssUrlPrefix + 'Radiation-EmittingProducts/ResourcesforYou/HealthCareProviders/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_6_7_2=g_navNode_6_7.addNode('3589','Industry',ssUrlPrefix + 'Radiation-EmittingProducts/ResourcesforYou/Industry/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_7=g_navNode_Root.addNode('1342','Combination Products',ssUrlPrefix + 'CombinationProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cp, fdagov-appr-oerwebteam','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_7_0=g_navNode_7.addNode('1753','About Combination Products',ssUrlPrefix + 'CombinationProducts/AboutCombinationProducts/default.htm','secondaryUrlVariableField==region1');
g_navNode_7_1=g_navNode_7.addNode('1754','Jurisdictional Information',ssUrlPrefix + 'CombinationProducts/JurisdictionalInformation/default.htm','secondaryUrlVariableField==region1');
g_navNode_7_1_0=g_navNode_7_1.addNode('1755','Jurisdictional Updates',ssUrlPrefix + 'CombinationProducts/JurisdictionalInformation/JurisdictionalUpdates/default.htm','secondaryUrlVariableField==region1');
g_navNode_7_1_1=g_navNode_7_1.addNode('1756','RFD Jurisdictional Decisions',ssUrlPrefix + 'CombinationProducts/JurisdictionalInformation/RFDJurisdictionalDecisions/default.htm','secondaryUrlVariableField==region1');
g_navNode_7_1_1_0=g_navNode_7_1_1.addNode('3501','Capsular Descriptions \x28\u201cOne-Liners\u201d\x29',ssUrlPrefix + 'CombinationProducts/JurisdictionalInformation/RFDJurisdictionalDecisions/CapsularDescriptions\u201cOne-Liners\u201d/default.htm','secondaryUrlVariableField==region1');
g_navNode_7_1_1_1=g_navNode_7_1_1.addNode('1758','Redacted Decision Letters',ssUrlPrefix + 'CombinationProducts/JurisdictionalInformation/RFDJurisdictionalDecisions/RedactedDecisionLetters/default.htm','secondaryUrlVariableField==region1');
g_navNode_7_2=g_navNode_7.addNode('1759','RFD Process',ssUrlPrefix + 'CombinationProducts/RFDProcess/default.htm','secondaryUrlVariableField==region1');
g_navNode_7_3=g_navNode_7.addNode('1760','Guidance \x26 Regulatory Information',ssUrlPrefix + 'CombinationProducts/GuidanceRegulatoryInformation/default.htm','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_7_4=g_navNode_7.addNode('1761','Requests for Comment',ssUrlPrefix + 'CombinationProducts/RequestsforComment/default.htm','secondaryUrlVariableField==region1');
g_navNode_7_5=g_navNode_7.addNode('3502','Meetings, Conferences, \x26 Workshops',ssUrlPrefix + 'CombinationProducts/MeetingsConferencesWorkshops/default.htm','cspSectionApproverAlias==fdagov-appr-cp-mcw','secondaryUrlVariableField==region1');
g_navNode_8=g_navNode_Root.addNode('1284','A to Z Subject Index',ssUrlPrefix + 'SiteIndex/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam');
g_navNode_9=g_navNode_Root.addNode('1839','About FDA',ssUrlPrefix + 'AboutFDA/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_9_0=g_navNode_9.addNode('3316','A-Z Index',ssUrlPrefix + 'AboutFDA/A-ZIndex/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_1=g_navNode_9.addNode('1858','FDA Acronyms \x26 Abbreviations',ssUrlPrefix + 'AboutFDA/FDAAcronymsAbbreviations/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_2=g_navNode_9.addNode('1842','Contact FDA',ssUrlPrefix + 'AboutFDA/ContactFDA/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_0=g_navNode_9_2.addNode('2143','Report a Problem',ssUrlPrefix + 'AboutFDA/ContactFDA/ReportaProblem/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_1=g_navNode_9_2.addNode('2144','Find an Office or Staff Member',ssUrlPrefix + 'AboutFDA/ContactFDA/FindanOfficeorStaffMember/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_1_0=g_navNode_9_2_1.addNode('2148','Telephone Numbers Frequently Asked of FDA',ssUrlPrefix + 'AboutFDA/ContactFDA/FindanOfficeorStaffMember/TelephoneNumbersFrequentlyAskedofFDA/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_1_1=g_navNode_9_2_1.addNode('2149','Field Offices \x26 FDA State Officials',ssUrlPrefix + 'AboutFDA/ContactFDA/FindanOfficeorStaffMember/FieldOfficesFDAStateOfficials/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_1_2=g_navNode_9_2_1.addNode('2150','FDA Public Affairs Specialists',ssUrlPrefix + 'AboutFDA/ContactFDA/FindanOfficeorStaffMember/FDAPublicAffairsSpecialists/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_2=g_navNode_9_2.addNode('2145','Stay Informed',ssUrlPrefix + 'AboutFDA/ContactFDA/StayInformed/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_2_0=g_navNode_9_2_2.addNode('2151','Get Email Updates',ssUrlPrefix + 'AboutFDA/ContactFDA/StayInformed/GetEmailUpdates/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_2_1=g_navNode_9_2_2.addNode('2152','Subscribe to Podcasts and News Feeds',ssUrlPrefix + 'AboutFDA/ContactFDA/StayInformed/SubscribetoPodcastsandNewsFeeds/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_2_2=g_navNode_9_2_2.addNode('2153','Subscribe to Newsletters',ssUrlPrefix + 'AboutFDA/ContactFDA/StayInformed/SubscribetoNewsletters/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_3=g_navNode_9_2.addNode('2146','Resolve a Dispute',ssUrlPrefix + 'AboutFDA/ContactFDA/ResolveaDispute/default.htm','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_9_2_3_0=g_navNode_9_2_3.addNode('2154','When to Contact an Ombudsman',ssUrlPrefix + 'AboutFDA/ContactFDA/ResolveaDispute/WhentoContactanOmbudsman/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_3_1=g_navNode_9_2_3.addNode('2155','How to Contact an Ombudsman',ssUrlPrefix + 'AboutFDA/ContactFDA/ResolveaDispute/HowtoContactanOmbudsman/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_3_1_0=g_navNode_9_2_3_1.addNode('2156','Non-Retaliation Policy',ssUrlPrefix + 'AboutFDA/ContactFDA/ResolveaDispute/HowtoContactanOmbudsman/Non-RetaliationPolicy/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_3_1_1=g_navNode_9_2_3_1.addNode('2157','Center Ombudsmen',ssUrlPrefix + 'AboutFDA/ContactFDA/ResolveaDispute/HowtoContactanOmbudsman/CenterOmbudsmen/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_2_4=g_navNode_9_2.addNode('2147','Comment on Regulations',ssUrlPrefix + 'AboutFDA/ContactFDA/CommentonRegulations/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_3=g_navNode_9.addNode('1860','Commissioners Page',ssUrlPrefix + 'AboutFDA/CommissionersPage/default.htm','cspSectionApproverAlias==fdagov-appr-afda-cp','secondaryUrlVariableField==region1');
g_navNode_9_3_0=g_navNode_9_3.addNode('3317','Biography',ssUrlPrefix + 'AboutFDA/CommissionersPage/Biography/default.htm','cspSectionApproverAlias==fdagov-appr-afda-cp-bio','secondaryUrlVariableField==region1');
g_navNode_9_3_1=g_navNode_9_3.addNode('1888','Andy\u2019s Take',ssUrlPrefix + 'AboutFDA/CommissionersPage/AndysTake/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_3_2=g_navNode_9_3.addNode('1889','Past Commissioners',ssUrlPrefix + 'AboutFDA/CommissionersPage/PastCommissioners/default.htm','cspSectionApproverAlias==fdagov-appr-afda-cp-pc','secondaryUrlVariableField==region1');
g_navNode_9_4=g_navNode_9.addNode('2449','What We Do',ssUrlPrefix + 'AboutFDA/WhatWeDo/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd','secondaryUrlVariableField==region1');
g_navNode_9_4_0=g_navNode_9_4.addNode('3357','What FDA Regulates',ssUrlPrefix + 'AboutFDA/WhatWeDo/WhatFDARegulates/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-wfr','secondaryUrlVariableField==region1');
g_navNode_9_4_1=g_navNode_9_4.addNode('3358','What FDA Doesn\u2019t Regulate',ssUrlPrefix + 'AboutFDA/WhatWeDo/WhatFDADoesn\u2019tRegulate/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-wfdr','secondaryUrlVariableField==region1');
g_navNode_9_4_2=g_navNode_9_4.addNode('3359','Laws Enforced by FDA',ssUrlPrefix + 'AboutFDA/WhatWeDo/LawsEnforcedbyFDA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-le','secondaryUrlVariableField==region1');
g_navNode_9_4_3=g_navNode_9_4.addNode('2453','Key Initiatives',ssUrlPrefix + 'AboutFDA/WhatWeDo/KeyInitiatives/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-ki','cspSectionEditorAlias==fdagov-edit-afda-wd-ki','secondaryUrlVariableField==region1');
g_navNode_9_4_3_0=g_navNode_9_4_3.addNode('3360','FDA\'s Sentinel Initiative',ssUrlPrefix + 'AboutFDA/WhatWeDo/KeyInitiatives/FDAsSentinelInitiative/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-ki-si','cspSectionEditorAlias==fdagov-edit-afda-wd-ki-si','secondaryUrlVariableField==region1');
g_navNode_9_4_3_1=g_navNode_9_4_3.addNode('3361','Action Plan for Import Safety',ssUrlPrefix + 'AboutFDA/WhatWeDo/KeyInitiatives/ActionPlanforImportSafety/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-ki-apis','secondaryUrlVariableField==region1');
g_navNode_9_4_3_2=g_navNode_9_4_3.addNode('3362','Food Protection Plan',ssUrlPrefix + 'AboutFDA/WhatWeDo/KeyInitiatives/FoodProtectionPlan/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-ki-fpp','secondaryUrlVariableField==region1');
g_navNode_9_4_3_3=g_navNode_9_4_3.addNode('3363','China Partnerships',ssUrlPrefix + 'AboutFDA/WhatWeDo/KeyInitiatives/ChinaPartnerships/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-ki-cp','secondaryUrlVariableField==region1');
g_navNode_9_4_3_4=g_navNode_9_4_3.addNode('3364','Generic Initiative for Value and Efficiency \x28GIVE\x29',ssUrlPrefix + 'AboutFDA/WhatWeDo/KeyInitiatives/GenericInitiativeforValueandEfficiencyGIVE/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-ki-give','secondaryUrlVariableField==region1');
g_navNode_9_4_3_5=g_navNode_9_4_3.addNode('3365','Law Strengthens FDA',ssUrlPrefix + 'AboutFDA/WhatWeDo/KeyInitiatives/LawStrengthensFDA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-ki-ls','secondaryUrlVariableField==region1');
g_navNode_9_4_4=g_navNode_9_4.addNode('2454','Budget and Finance',ssUrlPrefix + 'AboutFDA/WhatWeDo/BudgetandFinance/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-bf','secondaryUrlVariableField==region1');
g_navNode_9_4_5=g_navNode_9_4.addNode('2455','History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his','secondaryUrlVariableField==region1');
g_navNode_9_4_5_0=g_navNode_9_4_5.addNode('2463','FDA\'s Origin \x26 Functions',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDAsOriginFunctions/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-of','secondaryUrlVariableField==region1');
g_navNode_9_4_5_1=g_navNode_9_4_5.addNode('3366','Milestones in U.S. Food and Drug Law History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/MilestonesinU.S.FoodandDrugLawHistory/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ms','secondaryUrlVariableField==region1');
g_navNode_9_4_5_2=g_navNode_9_4_5.addNode('2465','Overviews on FDA History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/OverviewsonFDAHistory/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ov','secondaryUrlVariableField==region1');
g_navNode_9_4_5_2_0=g_navNode_9_4_5_2.addNode('2466','Location of FDA and its Predecessors in Federal Government',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/OverviewsonFDAHistory/LocationofFDAanditsPredecessorsinFederalGovernment/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-loca','secondaryUrlVariableField==region1');
g_navNode_9_4_5_3=g_navNode_9_4_5.addNode('2467','FDA Leaders \x26 Their Deputies',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDALeadersTheirDeputies/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ld','secondaryUrlVariableField==region1');
g_navNode_9_4_5_3_0=g_navNode_9_4_5_3.addNode('2475','Commissioners',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDALeadersTheirDeputies/Commissioners/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ld-co','secondaryUrlVariableField==region1');
g_navNode_9_4_5_3_1=g_navNode_9_4_5_3.addNode('2476','Deputy Commissioners',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDALeadersTheirDeputies/DeputyCommissioners/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ld-dc','secondaryUrlVariableField==region1');
g_navNode_9_4_5_4=g_navNode_9_4_5.addNode('2468','Histories of Product Regulation',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/HistoriesofProductRegulation/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-pr','secondaryUrlVariableField==region1');
g_navNode_9_4_5_4_0=g_navNode_9_4_5_4.addNode('2477','Food Standards and the Peanut Butter \x26 Jelly Sandwich',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/HistoriesofProductRegulation/FoodStandardsandthePeanutButterJellySandwich/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-pr-pp','secondaryUrlVariableField==region1');
g_navNode_9_4_5_4_1=g_navNode_9_4_5_4.addNode('2478','Summary of NDA Approvals \x26 Receipts, 1938 to the present',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/HistoriesofProductRegulation/SummaryofNDAApprovalsReceipts1938tothepresent/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-pr-ar','secondaryUrlVariableField==region1');
g_navNode_9_4_5_4_2=g_navNode_9_4_5_4.addNode('2479','100 Years of Biologics Regulation',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/HistoriesofProductRegulation/100YearsofBiologicsRegulation/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-pr-br, fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_9_4_5_4_3=g_navNode_9_4_5_4.addNode('3367','Sulfanilamide Disaster',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/HistoriesofProductRegulation/SulfanilamideDisaster/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-pr-sd','secondaryUrlVariableField==region1');
g_navNode_9_4_5_4_4=g_navNode_9_4_5_4.addNode('2481','Selections From FDLI Update Series on FDA History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/HistoriesofProductRegulation/SelectionsFromFDLIUpdateSeriesonFDAHistory/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-pr-sf','secondaryUrlVariableField==region1');
g_navNode_9_4_5_4_5=g_navNode_9_4_5_4.addNode('3965','Medical Device and Radiological Health Regulations Come of Age',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/HistoriesofProductRegulation/MedicalDeviceandRadiologicalHealthRegulationsComeofAge/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_4_5_4_6=g_navNode_9_4_5_4.addNode('3966','Promoting Safe and Effective Drugs for 100 Years',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/HistoriesofProductRegulation/PromotingSafeandEffectiveDrugsfor100Years/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_4_5_4_7=g_navNode_9_4_5_4.addNode('3967','Animal Health and Consumer Protection',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/HistoriesofProductRegulation/AnimalHealthandConsumerProtection/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_4_5_5=g_navNode_9_4_5.addNode('2469','FDA Organizational Histories',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDAOrganizationalHistories/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-oh','secondaryUrlVariableField==region1');
g_navNode_9_4_5_5_0=g_navNode_9_4_5_5.addNode('3964','Center for Biologics Evaluation and Research History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDAOrganizationalHistories/CenterforBiologicsEvaluationandResearchHistory/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_4_5_5_1=g_navNode_9_4_5_5.addNode('2489','Center for Devices and Radiological Health History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDAOrganizationalHistories/CenterforDevicesandRadiologicalHealthMilestones/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-oh-dr','secondaryUrlVariableField==region1');
g_navNode_9_4_5_5_2=g_navNode_9_4_5_5.addNode('2482','Center For Drug Evaluation and Research History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDAOrganizationalHistories/CenterForDrugEvaluationandResearchHistory/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-oh-d, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_4_5_5_2_0=g_navNode_9_4_5_5_2.addNode('2483','Drug Regulation at FDA',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDAOrganizationalHistories/CenterForDrugEvaluationandResearchHistory/DrugRegulationatFDA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-oh-d-d','secondaryUrlVariableField==region1');
g_navNode_9_4_5_5_2_1=g_navNode_9_4_5_5_2.addNode('3368','Early Work of the Bureau of Chemistry Drug Lab',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDAOrganizationalHistories/CenterForDrugEvaluationandResearchHistory/EarlyWorkoftheBureauofChemistryDrugLab/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-oh-d-e','secondaryUrlVariableField==region1');
g_navNode_9_4_5_5_2_2=g_navNode_9_4_5_5_2.addNode('2485','CDER Brochure and Chronology',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDAOrganizationalHistories/CenterForDrugEvaluationandResearchHistory/CenterforDrugEvaluationandResearchBrochureandChronology/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-oh-d-b','secondaryUrlVariableField==region1');
g_navNode_9_4_5_5_3=g_navNode_9_4_5_5.addNode('2486','Center for Veterinary Medicine History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDAOrganizationalHistories/CenterforVeterinaryMedicineHistory/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-oh-vm','secondaryUrlVariableField==region1');
g_navNode_9_4_5_5_4=g_navNode_9_4_5_5.addNode('2488','Center for Food Safety and Applied Nutrition History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDAOrganizationalHistories/CenterforFoodSafetyandAppliedNutritionEvolution/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-oh-fs','secondaryUrlVariableField==region1');
g_navNode_9_4_5_5_5=g_navNode_9_4_5_5.addNode('2487','National Center for Toxicological Research History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDAOrganizationalHistories/NationalCenterforToxicologicalResearchLeadersHighlights/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-oh-lh','secondaryUrlVariableField==region1');
g_navNode_9_4_5_5_6=g_navNode_9_4_5_5.addNode('3896','Office of Regulatory Affairs History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/FDAOrganizationalHistories/OfficeofRegulatoryAffairsHistory/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_4_5_6=g_navNode_9_4_5.addNode('2470','Research Tools on FDA History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/ResearchToolsonFDAHistory/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-rt','secondaryUrlVariableField==region1');
g_navNode_9_4_5_6_0=g_navNode_9_4_5_6.addNode('3369','Background',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/ResearchToolsonFDAHistory/Background/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-rt-bg','secondaryUrlVariableField==region1');
g_navNode_9_4_5_6_1=g_navNode_9_4_5_6.addNode('3370','Researching FDA with Unpublished sources',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/ResearchToolsonFDAHistory/ResearchingFDAwithUnpublishedsources/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-rt-us','secondaryUrlVariableField==region1');
g_navNode_9_4_5_6_2=g_navNode_9_4_5_6.addNode('3371','Researching FDA with Published Primary sources',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/ResearchToolsonFDAHistory/ResearchingFDAwithPublishedPrimarysources/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-rt-pps','secondaryUrlVariableField==region1');
g_navNode_9_4_5_6_3=g_navNode_9_4_5_6.addNode('3372','Researching FDA with Published Secondary Sources',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/ResearchToolsonFDAHistory/ResearchingFDAwithPublishedSecondarySources/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-rt-pss','secondaryUrlVariableField==region1');
g_navNode_9_4_5_7=g_navNode_9_4_5.addNode('2471','Oral Histories',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/OralHistories/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-orh','secondaryUrlVariableField==region1');
g_navNode_9_4_5_7_0=g_navNode_9_4_5_7.addNode('3373','Perspective on FDA Oral Histories',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/OralHistories/PerspectiveonFDAOralHistories/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-orh-ph','secondaryUrlVariableField==region1');
g_navNode_9_4_5_7_1=g_navNode_9_4_5_7.addNode('2495','Selected Oral History Transcripts',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/OralHistories/SelectedOralHistoryTranscripts/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-orh-st','secondaryUrlVariableField==region1');
g_navNode_9_4_5_8=g_navNode_9_4_5.addNode('2472','Centennial of FDA',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/CentennialofFDA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ce','secondaryUrlVariableField==region1');
g_navNode_9_4_5_8_0=g_navNode_9_4_5_8.addNode('2496','Centennial Announcements and Plans',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/CentennialofFDA/CentennialAnnouncementsandPlans/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ce-cap','secondaryUrlVariableField==region1');
g_navNode_9_4_5_8_1=g_navNode_9_4_5_8.addNode('3374','The Long Struggle for the Law',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/CentennialofFDA/TheLongStrugglefortheLaw/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ce-ls','secondaryUrlVariableField==region1');
g_navNode_9_4_5_8_2=g_navNode_9_4_5_8.addNode('3375','Activists in the 1906 Legislation campaign',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/CentennialofFDA/Activistsinthe1906Legislationcampaign/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ce-a06','secondaryUrlVariableField==region1');
g_navNode_9_4_5_8_3=g_navNode_9_4_5_8.addNode('2499','Centennial Edition of FDA Consumer',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/CentennialofFDA/CentennialEditionofFDAConsumer/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ce-ce','secondaryUrlVariableField==region1');
g_navNode_9_4_5_8_4=g_navNode_9_4_5_8.addNode('2500','FDLI Update Series on FDA Centennial',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/CentennialofFDA/FDLIUpdateSeriesonFDACentennial/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ce-fd','secondaryUrlVariableField==region1');
g_navNode_9_4_5_8_5=g_navNode_9_4_5_8.addNode('2501','Centennial Quiz',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/CentennialofFDA/CentennialQuiz/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ce-cq','secondaryUrlVariableField==region1');
g_navNode_9_4_5_8_6=g_navNode_9_4_5_8.addNode('2502','Centennial Slide Show',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/CentennialofFDA/CentennialSlideShow/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-ce-css','secondaryUrlVariableField==region1');
g_navNode_9_4_5_8_7=g_navNode_9_4_5_8.addNode('3895','Harvey W. Wiley',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/CentennialofFDA/HarveyW.Wiley/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_4_5_9=g_navNode_9_4_5.addNode('2473','This Week in FDA History',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/ThisWeekinFDAHistory/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-tw','secondaryUrlVariableField==region1');
g_navNode_9_4_5_10=g_navNode_9_4_5.addNode('3376','Links to Related Web sites',ssUrlPrefix + 'AboutFDA/WhatWeDo/History/LinkstoRelatedWebsites/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-his-lrws','secondaryUrlVariableField==region1');
g_navNode_9_4_6=g_navNode_9_4.addNode('3377','FAQs By Topic',ssUrlPrefix + 'AboutFDA/WhatWeDo/FAQsByTopic/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wd-faq','secondaryUrlVariableField==region1');
g_navNode_9_5=g_navNode_9.addNode('1862','Working at FDA',ssUrlPrefix + 'AboutFDA/WorkingatFDA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda','cspSectionEditorAlias==fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_0=g_navNode_9_5.addNode('1943','Hiring Initiative',ssUrlPrefix + 'AboutFDA/WorkingatFDA/HiringInitiative/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-hi','cspSectionEditorAlias==fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_1=g_navNode_9_5.addNode('3522','Vacancy Announcements',ssUrlPrefix + 'AboutFDA/WorkingatFDA/VacancyAnnouncements/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-va','cspSectionEditorAlias==fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_2=g_navNode_9_5.addNode('1944','Fellowship, Internship, Graduate, \x26 Faculty Programs',ssUrlPrefix + 'AboutFDA/WorkingatFDA/FellowshipInternshipGraduateFacultyPrograms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-figf,  fdagov-appr-afda-wfda-figfp','cspSectionEditorAlias==fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_2_0=g_navNode_9_5_2.addNode('3318','Commissioner\'s Fellowship Program',ssUrlPrefix + 'AboutFDA/WorkingatFDA/FellowshipInternshipGraduateFacultyPrograms/CommissionersFellowshipProgram/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-figf-cfp','cspSectionEditorAlias==fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_2_1=g_navNode_9_5_2.addNode('3523','Veterinary Medicine Student Internships',ssUrlPrefix + 'AboutFDA/WorkingatFDA/FellowshipInternshipGraduateFacultyPrograms/VeterinaryMedicineStudentInternships/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-figf-vms, fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam, fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_2_2=g_navNode_9_5_2.addNode('3319','Medical Device Fellowship Program \x28CDRH\x29',ssUrlPrefix + 'AboutFDA/WorkingatFDA/FellowshipInternshipGraduateFacultyPrograms/MedicalDeviceFellowshipProgramCDRH/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-figf-mdf, fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam, fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_2_3=g_navNode_9_5_2.addNode('3320','Device Evaluation Intern Program \x28CDRH\x29',ssUrlPrefix + 'AboutFDA/WorkingatFDA/FellowshipInternshipGraduateFacultyPrograms/DeviceEvaluationInternProgramCDRH/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-figf-dei, fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam, fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_2_4=g_navNode_9_5_2.addNode('3321','Pharmacy Student Experiential Program \x28CDER\x29',ssUrlPrefix + 'AboutFDA/WorkingatFDA/FellowshipInternshipGraduateFacultyPrograms/PharmacyStudentExperientialProgramCDER/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-figf-pse','cspSectionEditorAlias==fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_2_5=g_navNode_9_5_2.addNode('3632','ORISE Postgraduate Research Program \x28NCTR\x29',ssUrlPrefix + 'AboutFDA/WorkingatFDA/FellowshipInternshipGraduateFacultyPrograms/ORISEPostgraduateResearchProgram/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-figf-prp','cspSectionEditorAlias==fdagov-edit-afda-wfda');
g_navNode_9_5_2_6=g_navNode_9_5_2.addNode('3633','ORISE Science Internship Program \x28NCTR\x29',ssUrlPrefix + 'AboutFDA/WorkingatFDA/FellowshipInternshipGraduateFacultyPrograms/ORISEScienceInternshipProgram/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-figf-sip','cspSectionEditorAlias==fdagov-edit-afda-wfda');
g_navNode_9_5_2_7=g_navNode_9_5_2.addNode('3634','ORISE Faculty Research Program \x28NCTR\x29',ssUrlPrefix + 'AboutFDA/WorkingatFDA/FellowshipInternshipGraduateFacultyPrograms/ORISEFacultyResearchProgram/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-figf-frp','cspSectionEditorAlias==fdagov-edit-afda-wfda');
g_navNode_9_5_2_8=g_navNode_9_5_2.addNode('3635','ORISE Foreign National Training Program \x28NCTR\x29',ssUrlPrefix + 'AboutFDA/WorkingatFDA/FellowshipInternshipGraduateFacultyPrograms/ORISEForeignNationalTrainingProgram/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-figf-fnt','cspSectionEditorAlias==fdagov-edit-afda-wfda');
g_navNode_9_5_2_9=g_navNode_9_5_2.addNode('3327','Interdisciplinary Toxicology Program \x28NCTR\x29',ssUrlPrefix + 'AboutFDA/WorkingatFDA/FellowshipInternshipGraduateFacultyPrograms/InterdisciplinaryToxicologyProgramNCTR/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-figf-it','cspSectionEditorAlias==fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_2_10=g_navNode_9_5_2.addNode('3328','Office of Policy and Planning Internship Program',ssUrlPrefix + 'AboutFDA/WorkingatFDA/FellowshipInternshipGraduateFacultyPrograms/OfficeofPolicyandPlanningInternshipProgram/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-figf-ppi','cspSectionEditorAlias==fdagov-edit-afda-wfda','cspSectionMainQuery== ','secondaryUrlVariableField==region1');
g_navNode_9_5_3=g_navNode_9_5.addNode('1945','Career Descriptions',ssUrlPrefix + 'AboutFDA/WorkingatFDA/CareerDescriptions/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-cd','cspSectionEditorAlias==fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_4=g_navNode_9_5.addNode('1946','Benefits',ssUrlPrefix + 'AboutFDA/WorkingatFDA/Benefits/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-ben','cspSectionEditorAlias==fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_5=g_navNode_9_5.addNode('1947','Equal Employment at FDA',ssUrlPrefix + 'AboutFDA/WorkingatFDA/EqualEmploymentatFDA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-eef','cspSectionEditorAlias==fdagov-edit-afda-wfda-eef','secondaryUrlVariableField==region1');
g_navNode_9_5_6=g_navNode_9_5.addNode('1948','Ethics',ssUrlPrefix + 'AboutFDA/WorkingatFDA/Ethics/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-eth ','cspSectionEditorAlias==fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_7=g_navNode_9_5.addNode('1949','No Fear Act',ssUrlPrefix + 'AboutFDA/WorkingatFDA/NoFearAct/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-nfa','cspSectionEditorAlias==fdagov-edit-afda-wfda','secondaryUrlVariableField==region1');
g_navNode_9_5_8=g_navNode_9_5.addNode('1950','Buildings and Facilities',ssUrlPrefix + 'AboutFDA/WorkingatFDA/BuildingsandFacilities/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-bf','cspSectionEditorAlias==fdagov-edit-afda-wfda-bf','secondaryUrlVariableField==region1');
g_navNode_9_5_8_0=g_navNode_9_5_8.addNode('1951','White Oak Campus Information',ssUrlPrefix + 'AboutFDA/WorkingatFDA/BuildingsandFacilities/WhiteOakCampusInformation/default.htm','cspSectionApproverAlias==fdagov-appr-afda-wfda-bf-woci','cspSectionEditorAlias==fdagov-edit-afda-wfda-bf-woci','secondaryUrlVariableField==region1');
g_navNode_9_6=g_navNode_9.addNode('2503','Centers \x26 Offices',ssUrlPrefix + 'AboutFDA/CentersOffices/default.htm','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_9_6_0=g_navNode_9_6.addNode('2504','Organization Charts',ssUrlPrefix + 'AboutFDA/CentersOffices/OrganizationCharts/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-orgc','secondaryUrlVariableField==region1');
g_navNode_9_6_1=g_navNode_9_6.addNode('2505','Office of the Commissioner',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_0=g_navNode_9_6_1.addNode('2513','What We Do',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/WhatWeDo/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_0_0=g_navNode_9_6_1_0.addNode('2514','Initiatives',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/WhatWeDo/Initiatives/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc-wd-in, fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_1=g_navNode_9_6_1.addNode('2515','Organization Charts',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/OrganizationCharts/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_2=g_navNode_9_6_1.addNode('3679','Immediate Office of the Commissioner',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/ImmediateOfficeoftheCommissioner/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_3=g_navNode_9_6_1.addNode('3680','Office of International and Special Programs',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/OfficeofInternationalandSpecialPrograms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_3_0=g_navNode_9_6_1_3.addNode('3923','Office of International Programs',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/OfficeofInternationalandSpecialPrograms/OfficeofInternationalPrograms/index.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_4=g_navNode_9_6_1.addNode('3681','Office of Operations',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/OfficeofOperations/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_5=g_navNode_9_6_1.addNode('3682','Office of Policy, Planning, and Preparedness',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/OfficeofPolicyPlanningandPreparedness/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc-opp, fdagov-appr-afda-co-oc','cspSectionEditorAlias==fdagov-edit-afda-co-oc-opp','secondaryUrlVariableField==region1');
g_navNode_9_6_1_5_0=g_navNode_9_6_1_5.addNode('3754','Office of Policy and Planning ',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/OfficeofPolicyPlanningandPreparedness/OfficeofPolicyandPlanning/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc-opp, fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_5_0_0=g_navNode_9_6_1_5_0.addNode('3755','Office of Planning',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/OfficeofPolicyPlanningandPreparedness/OfficeofPolicyandPlanning/OfficeofPlanning/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc-opp','secondaryUrlVariableField==region1');
g_navNode_9_6_1_6=g_navNode_9_6_1.addNode('3683','Office of the Chief Scientist',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/OfficeofScientificandMedicalPrograms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_7=g_navNode_9_6_1.addNode('3684','Office of the Chief of Staff',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/OfficeoftheChiefofStaff/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_8=g_navNode_9_6_1.addNode('3685','Office of the Chief Counsel',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/OfficeoftheChiefCounsel/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_9=g_navNode_9_6_1.addNode('3686','Office of Equal Employment Opportunity and Diversity Management',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/OfficeofEqualEmploymentOpportunityandDiversityManagement/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_10=g_navNode_9_6_1.addNode('2517','Reports \x26 Budgets',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/ReportsBudgets/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc-rb, fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_1_11=g_navNode_9_6_1.addNode('3426','Contact OC',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeoftheCommissioner/ContactOC/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_2=g_navNode_9_6.addNode('2506','Center for Biologics Evaluation and Research',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforBiologicsEvaluationandResearch/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_2_0=g_navNode_9_6_2.addNode('2519','What We Do',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforBiologicsEvaluationandResearch/WhatWeDo/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_2_0_0=g_navNode_9_6_2_0.addNode('2520','Vision and  Mission',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforBiologicsEvaluationandResearch/WhatWeDo/VisionandMission/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_2_1=g_navNode_9_6_2.addNode('2522','Organization Charts',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforBiologicsEvaluationandResearch/OrganizationCharts/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_2_2=g_navNode_9_6_2.addNode('2523','Reports \x26 Budgets',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforBiologicsEvaluationandResearch/ReportsBudgets/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_2_3=g_navNode_9_6_2.addNode('3427','Contact CBER',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforBiologicsEvaluationandResearch/ContactCBER/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_2_3_0=g_navNode_9_6_2_3.addNode('3428','CBER Ombudsman',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforBiologicsEvaluationandResearch/ContactCBER/CBEROmbudsman/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_3=g_navNode_9_6.addNode('2507','Center for Devices and Radiological Health',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDevicesandRadiologicalHealth/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_3_0=g_navNode_9_6_3.addNode('3432','CDRH Initiatives',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDevicesandRadiologicalHealth/CDRHInitiatives/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_3_1=g_navNode_9_6_3.addNode('3433','CDRH Vision and Mission',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDevicesandRadiologicalHealth/CDRHVisionandMission/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_3_2=g_navNode_9_6_3.addNode('3944','CDRH Offices',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDevicesandRadiologicalHealth/CDRHOffices/index.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_3_3=g_navNode_9_6_3.addNode('3945','CDRH Networks',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDevicesandRadiologicalHealth/CDRHNetworks/index.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_3_4=g_navNode_9_6_3.addNode('3946','CDRH Reports',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDevicesandRadiologicalHealth/CDRHReports/index.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_3_5=g_navNode_9_6_3.addNode('3947','CDRH Ombudsman',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDevicesandRadiologicalHealth/CDRHOmbudsman/index.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_4=g_navNode_9_6.addNode('2508','Center for Drug Evaluation and Research',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDrugEvaluationandResearch/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_4_0=g_navNode_9_6_4.addNode('3438','What We Do',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDrugEvaluationandResearch/WhatWeDo/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cder-wd, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_4_0_0=g_navNode_9_6_4_0.addNode('3439','History of CDER',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDrugEvaluationandResearch/WhatWeDo/HistoryofCDER/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cder-wd-hi, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_4_0_1=g_navNode_9_6_4_0.addNode('3441','Initiatives',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDrugEvaluationandResearch/WhatWeDo/Initiatives/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cder-wd-in, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_4_1=g_navNode_9_6_4.addNode('3442','FAQs about CDER',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDrugEvaluationandResearch/FAQsaboutCDER/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cder-faq, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_4_2=g_navNode_9_6_4.addNode('3443','Organization Charts',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDrugEvaluationandResearch/OrganizationCharts/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cder-oc, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_4_3=g_navNode_9_6_4.addNode('2539','Reports \x26 Budgets',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDrugEvaluationandResearch/ReportsBudgets/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cder-rb, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_4_4=g_navNode_9_6_4.addNode('3444','Manual of Policies \x26 Procedures',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDrugEvaluationandResearch/ManualofPoliciesProcedures/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cder-mpp, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_4_5=g_navNode_9_6_4.addNode('3445','Contact CDER',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDrugEvaluationandResearch/ContactCDER/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cder-co, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_4_5_0=g_navNode_9_6_4_5.addNode('3446','CDER Ombudsman',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforDrugEvaluationandResearch/ContactCDER/CDEROmbudsman/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cder-co-om, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_6_5=g_navNode_9_6.addNode('2509','Center for Food Safety and Applied Nutrition',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforFoodSafetyandAppliedNutrition/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cfsan','cspSectionEditorAlias==fdagov-edit-afda-co-cfsan','secondaryUrlVariableField==region1');
g_navNode_9_6_5_0=g_navNode_9_6_5.addNode('3447','What We Do',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforFoodSafetyandAppliedNutrition/WhatWeDo/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cfsan-wd','cspSectionEditorAlias==fdagov-edit-afda-co-cfsan','secondaryUrlVariableField==region1');
g_navNode_9_6_5_0_0=g_navNode_9_6_5_0.addNode('3448','History of CFSAN',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforFoodSafetyandAppliedNutrition/WhatWeDo/HistoryofCFSAN/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cfsan-wd-h','cspSectionEditorAlias==fdagov-edit-afda-co-cfsan','secondaryUrlVariableField==region1');
g_navNode_9_6_5_0_1=g_navNode_9_6_5_0.addNode('3449','Initiatives',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforFoodSafetyandAppliedNutrition/WhatWeDo/Initiatives/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cfsan-wd-i','cspSectionEditorAlias==fdagov-edit-afda-co-cfsan','secondaryUrlVariableField==region1');
g_navNode_9_6_5_1=g_navNode_9_6_5.addNode('3450','FAQs about CFSAN',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforFoodSafetyandAppliedNutrition/FAQsaboutCFSAN/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cfsan-faq','cspSectionEditorAlias==fdagov-edit-afda-co-cfsan','secondaryUrlVariableField==region1');
g_navNode_9_6_5_2=g_navNode_9_6_5.addNode('3451','Organization Charts',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforFoodSafetyandAppliedNutrition/OrganizationCharts/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cfsan-oc','cspSectionEditorAlias==fdagov-edit-afda-co-cfsan','secondaryUrlVariableField==region1');
g_navNode_9_6_5_3=g_navNode_9_6_5.addNode('2549','Reports \x26 Budgets',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforFoodSafetyandAppliedNutrition/ReportsBudgets/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cfsan-rb','cspSectionEditorAlias==fdagov-edit-afda-co-cfsan','secondaryUrlVariableField==region1');
g_navNode_9_6_5_4=g_navNode_9_6_5.addNode('3452','Contact CFSAN',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforFoodSafetyandAppliedNutrition/ContactCFSAN/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cfsan-co','cspSectionEditorAlias==fdagov-edit-afda-co-cfsan','secondaryUrlVariableField==region1');
g_navNode_9_6_6=g_navNode_9_6.addNode('2510','About the Center for Veterinary Medicine',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforVeterinaryMedicine/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_9_6_6_0=g_navNode_9_6_6.addNode('3453','CVM Offices',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforVeterinaryMedicine/WhatWeDo/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cvm-wd, fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_9_6_6_1=g_navNode_9_6_6.addNode('3980','CVM Vision and Mission',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforVeterinaryMedicine/CVMVisionandMission/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_6_6_2=g_navNode_9_6_6.addNode('3464','CVM Ombudsman',ssUrlPrefix + 'AboutFDA/CentersOffices/CenterforVeterinaryMedicine/CVMOmbudsman/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-cvm-co-om, fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_9_6_7=g_navNode_9_6.addNode('2511','National Center for Toxicological Research',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-nctr','secondaryUrlVariableField==region1');
g_navNode_9_6_7_0=g_navNode_9_6_7.addNode('3465','What We Do',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/WhatWeDo/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-nctr-wd','secondaryUrlVariableField==region1');
g_navNode_9_6_7_0_0=g_navNode_9_6_7_0.addNode('3888','NCTR Publications',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/WhatWeDo/NCTRPublications/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_6_7_0_1=g_navNode_9_6_7_0.addNode('3889','Research Divisions',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/WhatWeDo/ResearchDivisions/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_6_7_0_2=g_navNode_9_6_7_0.addNode('3890','NCTR Centers of Excellence',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/WhatWeDo/NCTRCentersofExcellence/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_6_7_0_3=g_navNode_9_6_7_0.addNode('3891','NCTR Research Priorities',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/WhatWeDo/NCTRResearchPriorities/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_6_7_0_4=g_navNode_9_6_7_0.addNode('3892','NCTR Tools and Datasets',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/WhatWeDo/NCTRToolsandDatasets/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_6_7_0_5=g_navNode_9_6_7_0.addNode('3466','NCTR Vision and Mission',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/WhatWeDo/Mission/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-nctr-wd-mi','secondaryUrlVariableField==region1');
g_navNode_9_6_7_0_6=g_navNode_9_6_7_0.addNode('3467','Location of Facilities',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/WhatWeDo/LocationofFacilities/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-nctr-wd-lf','secondaryUrlVariableField==region1');
g_navNode_9_6_7_0_7=g_navNode_9_6_7_0.addNode('3468','Facilities \x26 Services',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/WhatWeDo/FacilitiesServices/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-nctr-wd-fs','secondaryUrlVariableField==region1');
g_navNode_9_6_7_1=g_navNode_9_6_7.addNode('3473','Organization Charts',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/OrganizationCharts/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-nctr-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_7_2=g_navNode_9_6_7.addNode('2569','Research Accomplishments and Plans',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/ResearchAccomplishmentsPlans/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-nctr-rb','secondaryUrlVariableField==region1');
g_navNode_9_6_7_3=g_navNode_9_6_7.addNode('3474','Contact NCTR',ssUrlPrefix + 'AboutFDA/CentersOffices/NationalCenterforToxicologicalResearch/ContactNCTR/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-nctr-co','secondaryUrlVariableField==region1');
g_navNode_9_6_8=g_navNode_9_6.addNode('2512','Office of Regulatory Affairs',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeofRegulatoryAffairs/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-ora','secondaryUrlVariableField==region1');
g_navNode_9_6_8_0=g_navNode_9_6_8.addNode('3475','What We Do',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeofRegulatoryAffairs/WhatWeDo/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-ora-wd','secondaryUrlVariableField==region1');
g_navNode_9_6_8_0_0=g_navNode_9_6_8_0.addNode('3476','History of ORA',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeofRegulatoryAffairs/WhatWeDo/HistoryofORA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-ora-wd-hi','secondaryUrlVariableField==region1');
g_navNode_9_6_8_0_1=g_navNode_9_6_8_0.addNode('3478','Initiatives',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeofRegulatoryAffairs/WhatWeDo/Initiatives/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-ora-wd-in','secondaryUrlVariableField==region1');
g_navNode_9_6_8_1=g_navNode_9_6_8.addNode('3479','FAQs about ORA',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeofRegulatoryAffairs/FAQsaboutORA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-ora-faq','secondaryUrlVariableField==region1');
g_navNode_9_6_8_2=g_navNode_9_6_8.addNode('3503','Organization Charts',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeofRegulatoryAffairs/OrganizationCharts/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-ora-oc','secondaryUrlVariableField==region1');
g_navNode_9_6_8_3=g_navNode_9_6_8.addNode('2580','Reports \x26 Budgets',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeofRegulatoryAffairs/ReportsBudgets/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-ora-rb','secondaryUrlVariableField==region1');
g_navNode_9_6_8_4=g_navNode_9_6_8.addNode('3480','Contact ORA',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeofRegulatoryAffairs/ContactORA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-ora-co','secondaryUrlVariableField==region1');
g_navNode_9_6_8_4_0=g_navNode_9_6_8_4.addNode('3481','ORA Ombudsman',ssUrlPrefix + 'AboutFDA/CentersOffices/OfficeofRegulatoryAffairs/ContactORA/ORAOmbudsman/default.htm','cspSectionApproverAlias==fdagov-appr-afda-co-ora-co-om','secondaryUrlVariableField==region1');
g_navNode_9_7=g_navNode_9.addNode('1864','Partnerships \x26 Collaborations',ssUrlPrefix + 'AboutFDA/PartnershipsCollaborations/default.htm','cspSectionApproverAlias==fdagov-appr-afda-pc','secondaryUrlVariableField==region1');
g_navNode_9_7_0=g_navNode_9_7.addNode('3329','Whom To Contact About Partnerships',ssUrlPrefix + 'AboutFDA/PartnershipsCollaborations/WhomToContactAboutPartnerships/default.htm','cspSectionApproverAlias==fdagov-appr-afda-pc-wtcap','secondaryUrlVariableField==region1');
g_navNode_9_7_1=g_navNode_9_7.addNode('2023','Public/Private Partnership Program',ssUrlPrefix + 'AboutFDA/PartnershipsCollaborations/PublicPrivatePartnershipProgram/default.htm','cspSectionApproverAlias==fdagov-appr-afda-pc-pppp','secondaryUrlVariableField==region1');
g_navNode_9_7_2=g_navNode_9_7.addNode('3330','Memoranda of Understanding \x28MOUs\x29',ssUrlPrefix + 'AboutFDA/PartnershipsCollaborations/MemorandaofUnderstandingMOUs/default.htm','cspSectionApproverAlias==fdagov-appr-afda-pc-mou','secondaryUrlVariableField==region1');
g_navNode_9_7_2_0=g_navNode_9_7_2.addNode('3333','Whom to Contact About MOUs',ssUrlPrefix + 'AboutFDA/PartnershipsCollaborations/MemorandaofUnderstandingMOUs/WhomtoContactAboutMOUs/default.htm','cspSectionApproverAlias==fdagov-appr-afda-pc-mou-wc','secondaryUrlVariableField==region1');
g_navNode_9_7_2_1=g_navNode_9_7_2.addNode('3334','Domestic MOUs',ssUrlPrefix + 'AboutFDA/PartnershipsCollaborations/MemorandaofUnderstandingMOUs/DomesticMOUs/default.htm','cspSectionApproverAlias==fdagov-appr-afda-pc-mou-dom','secondaryUrlVariableField==region1');
g_navNode_9_7_2_2=g_navNode_9_7_2.addNode('3335','Academia MOUs',ssUrlPrefix + 'AboutFDA/PartnershipsCollaborations/MemorandaofUnderstandingMOUs/AcademiaMOUs/default.htm','cspSectionApproverAlias==fdagov-appr-afda-pc-mou-aca','secondaryUrlVariableField==region1');
g_navNode_9_7_2_3=g_navNode_9_7_2.addNode('3336','International MOUs',ssUrlPrefix + 'AboutFDA/PartnershipsCollaborations/MemorandaofUnderstandingMOUs/InternationalMOUs/default.htm','cspSectionApproverAlias==fdagov-appr-afda-pc-mou-int','secondaryUrlVariableField==region1');
g_navNode_9_7_2_4=g_navNode_9_7_2.addNode('3337','Other MOUs',ssUrlPrefix + 'AboutFDA/PartnershipsCollaborations/MemorandaofUnderstandingMOUs/OtherMOUs/default.htm','cspSectionApproverAlias==fdagov-appr-afda-pc-mou-oth','secondaryUrlVariableField==region1');
g_navNode_9_8=g_navNode_9.addNode('2586','Reports, Manuals, \x26 Forms',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0=g_navNode_9_8.addNode('2587','Reports',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam,fdagov-appr-oerwebteam','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep','secondaryUrlVariableField==region1');
g_navNode_9_8_0_0=g_navNode_9_8_0.addNode('2592','Strategic Action Plan',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/StrategicActionPlan/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-rep-sap','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep-sap','secondaryUrlVariableField==region1');
g_navNode_9_8_0_1=g_navNode_9_8_0.addNode('2591','User Fee Reports',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/UserFeeReports/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-rep-ufr','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep','secondaryUrlVariableField==region1');
g_navNode_9_8_0_1_0=g_navNode_9_8_0_1.addNode('3624','Performance Reports',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/UserFeeReports/PerformanceReports/default.htm','cspSectionApproverAlias==fdagov-appr-afda-perfrep','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep');
g_navNode_9_8_0_1_0_0=g_navNode_9_8_0_1_0.addNode('3527','PDUFA',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/UserFeeReports/PerformanceReports/PDUFA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-perfrep','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep','secondaryUrlVariableField==region1');
g_navNode_9_8_0_1_0_1=g_navNode_9_8_0_1_0.addNode('3528','MDUFMA',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/UserFeeReports/PerformanceReports/MDUFMA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-perfrep','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep','secondaryUrlVariableField==region1');
g_navNode_9_8_0_1_0_2=g_navNode_9_8_0_1_0.addNode('3529','ADUFA',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/UserFeeReports/PerformanceReports/ADUFA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-perfrep','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep','secondaryUrlVariableField==region1');
g_navNode_9_8_0_1_1=g_navNode_9_8_0_1.addNode('3625','Financial Reports',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/UserFeeReports/FinancialReports/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-rep-fr','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep');
g_navNode_9_8_0_1_1_0=g_navNode_9_8_0_1_1.addNode('3626','PDUFA',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/UserFeeReports/FinancialReports/PDUFA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-rep-fr','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep');
g_navNode_9_8_0_1_1_1=g_navNode_9_8_0_1_1.addNode('3627','MDUFMA',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/UserFeeReports/FinancialReports/MDUFMA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-rep-fr','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep');
g_navNode_9_8_0_1_1_2=g_navNode_9_8_0_1_1.addNode('3628','ADUFA',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/UserFeeReports/FinancialReports/ADUFA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-rep-fr','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep');
g_navNode_9_8_0_1_2=g_navNode_9_8_0_1.addNode('3629','Studies',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/UserFeeReports/Studies/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-rep-s','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep');
g_navNode_9_8_0_2=g_navNode_9_8_0.addNode('3531','Performance Reports',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/PerformanceReports/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-rep-pr','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep-pr','secondaryUrlVariableField==region1');
g_navNode_9_8_0_2_0=g_navNode_9_8_0_2.addNode('3546','Combination Products',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/PerformanceReports/CombinationProducts/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0_3=g_navNode_9_8_0.addNode('2593','Performance Plans',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/PerformancePlans/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-rep-pp','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep-pp','secondaryUrlVariableField==region1');
g_navNode_9_8_0_4=g_navNode_9_8_0.addNode('2594','Economic Analyses',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/EconomicAnalyses/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-rep-ea','cspSectionEditorAlias==fdagov-edit-afda-rmf-rep-ea','secondaryUrlVariableField==region1');
g_navNode_9_8_0_5=g_navNode_9_8_0.addNode('3904','Budget Reports',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/BudgetReports/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0_5_0=g_navNode_9_8_0_5.addNode('3905','2009 FDA Budget Summary',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/BudgetReports/2009FDABudgetSummary/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0_5_1=g_navNode_9_8_0_5.addNode('3906','2008 FDA Budget Summary',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/BudgetReports/2008FDABudgetSummary/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0_5_2=g_navNode_9_8_0_5.addNode('3907','2007 FDA Budget Summary',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/BudgetReports/2007FDABudgetSummary/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0_5_3=g_navNode_9_8_0_5.addNode('3908','2006 FDA Budget Summary',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/BudgetReports/2006FDABudgetSummary/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0_5_4=g_navNode_9_8_0_5.addNode('3909','2005 FDA Budget Summary',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/BudgetReports/2005FDABudgetSummary/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0_5_5=g_navNode_9_8_0_5.addNode('3910','2004 FDA Budget Summary',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/BudgetReports/2004FDABudgetSummary/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0_5_6=g_navNode_9_8_0_5.addNode('3911','2003 FDA Budget Summary',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/BudgetReports/2003FDABudgetSummary/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0_5_7=g_navNode_9_8_0_5.addNode('3912','2002 FDA Budget Summary',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/BudgetReports/2002FDABudgetSummary/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0_5_8=g_navNode_9_8_0_5.addNode('3913','2001 FDA Budget Summary',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/BudgetReports/2001FDABudgetSummary/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0_5_9=g_navNode_9_8_0_5.addNode('3914','2000 FDA Budget Summary',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/BudgetReports/2000FDABudgetSummary/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_0_5_10=g_navNode_9_8_0_5.addNode('3915','1999 FDA Budget Summary',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Reports/BudgetReports/1999FDABudgetSummary/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_8_1=g_navNode_9_8.addNode('2595','Staff Manual Guides',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/StaffManualGuides/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam, fdagov-appr-afda-rmf-smg','secondaryUrlVariableField==region1');
g_navNode_9_8_2=g_navNode_9_8.addNode('2596','Staff Policies and Procedures',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/StaffPoliciesandProcedures/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam, fdagov-appr-afda-rmf-spp','cspSectionEditorAlias==fdagov-edit-afda-rmf-spp','secondaryUrlVariableField==region1');
g_navNode_9_8_3=g_navNode_9_8.addNode('2589','Forms',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form','secondaryUrlVariableField==region1');
g_navNode_9_8_3_0=g_navNode_9_8_3.addNode('3532','List Forms Alphabetically',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/ListFormsAlphabetically/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form-lfa, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_8_3_1=g_navNode_9_8_3.addNode('3533','List Forms Numerically',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/ListFormsNumerically/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form-lfn, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_9_8_3_2=g_navNode_9_8_3.addNode('3534','Animal Drug Forms',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/AnimalDrugForms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form-adf, fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','cspSectionMainQuery==xSubType \x3csubstring\x3e \x60Animal Drugs\x60','secondaryUrlVariableField==region1');
g_navNode_9_8_3_3=g_navNode_9_8_3.addNode('3535','Biologic Forms',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/BiologicForms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form-bf','cspSectionMainQuery==xSubType \x3csubstring\x3e \x60Biologics\x60','secondaryUrlVariableField==region1');
g_navNode_9_8_3_4=g_navNode_9_8_3.addNode('3536','Cosmetic Forms',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/CosmeticForms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form-cf','cspSectionMainQuery==xSubType \x3csubstring\x3e \x60Cosmetics\x60','secondaryUrlVariableField==region1');
g_navNode_9_8_3_5=g_navNode_9_8_3.addNode('3537','Food Forms',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/FoodForms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form-ff','cspSectionMainQuery==xSubType \x3csubstring\x3e \x60Foods\x60','secondaryUrlVariableField==region1');
g_navNode_9_8_3_6=g_navNode_9_8_3.addNode('3538','Human Drug Forms',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/HumanDrugForms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form-hd, fdagov-appr-cder-webteam','cspSectionMainQuery==xSubType \x3csubstring\x3e \x60Human Drugs\x60','secondaryUrlVariableField==region1');
g_navNode_9_8_3_7=g_navNode_9_8_3.addNode('3539','Medical Device Forms',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/MedicalDeviceForms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form-md','cspSectionMainQuery==xSubType \x3csubstring\x3e \x60Medical Devices\x60','secondaryUrlVariableField==region1');
g_navNode_9_8_3_8=g_navNode_9_8_3.addNode('3540','Radiological Health Forms',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/RadiologicalHealthForms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form-rh','cspSectionMainQuery==xSubType \x3csubstring\x3e \x60Radiological\x60','secondaryUrlVariableField==region1');
g_navNode_9_8_3_9=g_navNode_9_8_3.addNode('3541','Safety \x26 Problem Reporting Forms',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/SafetyProblemReportingForms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form-spr','cspSectionMainQuery==xSubType \x3csubstring\x3e \x60Safety and Problem\x60','secondaryUrlVariableField==region1');
g_navNode_9_8_3_10=g_navNode_9_8_3.addNode('3542','Field Operations Forms',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/FieldOperationsForms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form-fpf','cspSectionMainQuery==xSubType \x3csubstring\x3e \x60Field Operations\x60','secondaryUrlVariableField==region1');
g_navNode_9_8_3_11=g_navNode_9_8_3.addNode('3543','Other Forms',ssUrlPrefix + 'AboutFDA/ReportsManualsForms/Forms/OtherForms/default.htm','cspSectionApproverAlias==fdagov-appr-afda-rmf-form-of','cspSectionMainQuery==xSubType \x3csubstring\x3e \x60Other\x60','secondaryUrlVariableField==region1');
g_navNode_9_9=g_navNode_9.addNode('1866','En Espa\xf1ol',ssUrlPrefix + 'AboutFDA/EnEspanol/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_10=g_navNode_9.addNode('2609','About This Website',ssUrlPrefix + 'AboutFDA/AboutThisWebsite/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_10_0=g_navNode_9_10.addNode('3383','Accessibility',ssUrlPrefix + 'AboutFDA/AboutThisWebsite/Accessibility/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_10_1=g_navNode_9_10.addNode('2611','Website Policies',ssUrlPrefix + 'AboutFDA/AboutThisWebsite/WebsitePolicies/default.htm','cspSectionApproverAlias==fdagov-appr-afda-atw-wp','secondaryUrlVariableField==region1');
g_navNode_9_10_2=g_navNode_9_10.addNode('3384','Website Awards',ssUrlPrefix + 'AboutFDA/AboutThisWebsite/WebsiteAwards/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_10_3=g_navNode_9_10.addNode('3385','About the Website Redesign',ssUrlPrefix + 'AboutFDA/AboutThisWebsite/AbouttheWebsiteRedesign/default.htm','secondaryUrlVariableField==region1');
g_navNode_9_11=g_navNode_9.addNode('3960','Doing Business With FDA',ssUrlPrefix + 'AboutFDA/DoingBusinessWithFDA/index.htm','cspSectionApproverAlias==fdagov-appr-afda-dbw','secondaryUrlVariableField==region1');
g_navNode_10=g_navNode_Root.addNode('1840','Advisory Committees',ssUrlPrefix + 'AdvisoryCommittees/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam,  fdagov-appr-ac','cspSectionEditorAlias== fdagov-edit-ac','secondaryUrlVariableField==region1');
g_navNode_10_0=g_navNode_10.addNode('2042','About Advisory Committees',ssUrlPrefix + 'AdvisoryCommittees/AboutAdvisoryCommittees/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam, fdagov-appr-cder-commteam, fdagov-appr-ac-aac','cspSectionEditorAlias==fdagov-edit-cvm-commteam, fdagov-edit-cder-commteam,  fdagov-edit-ac-aac','secondaryUrlVariableField==region1');
g_navNode_10_0_0=g_navNode_10_0.addNode('2045','Committee Membership',ssUrlPrefix + 'AdvisoryCommittees/AboutAdvisoryCommittees/CommitteeMembership/default.htm','cspSectionApproverAlias==fdagov-appr-ac-aac-cm, fdagov-appr-cder-commteam,  fdagov-appr-ac-aac-cm','cspSectionEditorAlias==fdagov-edit-cder-commteam,  fdagov-edit-ac-aac-cm','secondaryUrlVariableField==region1');
g_navNode_10_0_0_0=g_navNode_10_0_0.addNode('2047','Applying for Membership',ssUrlPrefix + 'AdvisoryCommittees/AboutAdvisoryCommittees/CommitteeMembership/ApplyingforMembership/default.htm','cspSectionApproverAlias==fdagov-appr-ac-aac-cm-am, fdagov-appr-cder-commteam','cspSectionEditorAlias==fdagov-edit-cder-commteam,  fdagov-edit-ac-aac-cm-am','secondaryUrlVariableField==region1');
g_navNode_10_0_0_1=g_navNode_10_0_0.addNode('2048','Membership Types',ssUrlPrefix + 'AdvisoryCommittees/AboutAdvisoryCommittees/CommitteeMembership/MembershipTypes/default.htm','cspSectionApproverAlias==fdagov-appr-ac-aac-cm-mt, fdagov-appr-cder-commteam','cspSectionEditorAlias==fdagov-edit-cder-commteam,  fdagov-edit-ac-aac-cm-mt','secondaryUrlVariableField==region1');
g_navNode_10_0_0_2=g_navNode_10_0_0.addNode('2049','Advisory Committee Vacancies',ssUrlPrefix + 'AdvisoryCommittees/AboutAdvisoryCommittees/CommitteeMembership/AdvisoryCommitteeVacancies/default.htm','cspSectionApproverAlias==fdagov-appr-ac-aac-cm-acv, fdagov-appr-cder-commteam','cspSectionEditorAlias==fdagov-edit-cder-commteam,  fdagov-edit-ac-aac-cm-acv','secondaryUrlVariableField==region1');
g_navNode_10_0_1=g_navNode_10_0.addNode('2046','Laws, Regulations \x26 Guidance',ssUrlPrefix + 'AdvisoryCommittees/AboutAdvisoryCommittees/LawsRegulationsGuidance/default.htm','cspSectionApproverAlias==fdagov-appr-ac-aac-lrg, fdagov-appr-cder-commteam','cspSectionEditorAlias==fdagov-edit-cder-commteam','secondaryUrlVariableField==region1');
g_navNode_10_1=g_navNode_10.addNode('2043','Committees \x26 Meeting Materials',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm','cspSectionEditorAlias==fdagov-edit-ac-cmm','secondaryUrlVariableField==region1');
g_navNode_10_1_0=g_navNode_10_1.addNode('2060','Veterinary Medicine Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/VeterinaryMedicineAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-av-ma','secondaryUrlVariableField==region1');
g_navNode_10_1_1=g_navNode_10_1.addNode('2051','Blood, Vaccines and Other Biologics',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/BloodVaccinesandOtherBiologics/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_1_0=g_navNode_10_1_1.addNode('2061','Allergenic Products Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/BloodVaccinesandOtherBiologics/AllergenicProductsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_1_1=g_navNode_10_1_1.addNode('2062','Blood Products Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/BloodVaccinesandOtherBiologics/BloodProductsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_1_2=g_navNode_10_1_1.addNode('2063','Cellular, Tissue, and Gene Therapies Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/BloodVaccinesandOtherBiologics/CellularTissueandGeneTherapiesAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_1_3=g_navNode_10_1_1.addNode('2064','Transmissible Spongiform Encephalopathies Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/BloodVaccinesandOtherBiologics/TransmissibleSpongiformEncephalopathiesAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_1_4=g_navNode_10_1_1.addNode('2065','Vaccines and Related Biological Products Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/BloodVaccinesandOtherBiologics/VaccinesandRelatedBiologicalProductsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2=g_navNode_10_1.addNode('2052','Drugs',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_0=g_navNode_10_1_2.addNode('2066','Anesthetic And Life Support Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/AnestheticAndLifeSupportDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-aalsd, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_1=g_navNode_10_1_2.addNode('2067','Anti-Infective Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/Anti-InfectiveDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-aid, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_2=g_navNode_10_1_2.addNode('2068','Antiviral Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/AntiviralDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-and, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_3=g_navNode_10_1_2.addNode('2069','Arthritis Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/ArthritisDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-ard, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_4=g_navNode_10_1_2.addNode('2070','Cardiovascular and Renal Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/CardiovascularandRenalDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-crda, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_5=g_navNode_10_1_2.addNode('2071','Dermatologic and Ophthalmic Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/DermatologicandOphthalmicDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-dod, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_6=g_navNode_10_1_2.addNode('2072','Drug Safety and Risk Management Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/DrugSafetyandRiskManagementAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-dsrm, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_7=g_navNode_10_1_2.addNode('2073','Endocrinologic and Metabolic Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/EndocrinologicandMetabolicDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-emd, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_8=g_navNode_10_1_2.addNode('2074','Gastrointestinal Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/GastrointestinalDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-gd, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_9=g_navNode_10_1_2.addNode('2075','Nonprescription Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/NonprescriptionDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-nd, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_10=g_navNode_10_1_2.addNode('2076','Oncologic Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/OncologicDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-od, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_11=g_navNode_10_1_2.addNode('2077','Peripheral and Central Nervous System Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/PeripheralandCentralNervousSystemDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-pcns, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_12=g_navNode_10_1_2.addNode('2078','Advisory Committee for Pharmaceutical Science and Clinical Pharmacology',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/AdvisoryCommitteeforPharmaceuticalScienceandClinicalPharmacology/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-acps, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_13=g_navNode_10_1_2.addNode('2079','Psychopharmacologic Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/PsychopharmacologicDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-pd, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_14=g_navNode_10_1_2.addNode('2080','Pulmonary-Allergy Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/Pulmonary-AllergyDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-pad, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_2_15=g_navNode_10_1_2.addNode('2081','Reproductive Health Drugs Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Drugs/ReproductiveHealthDrugsAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-dru-rhd, fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_3=g_navNode_10_1.addNode('2053','Food and Cosmetics',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/FoodandCosmetics/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-fc','cspSectionEditorAlias==fdagov-edit-ac-cmm-fc','secondaryUrlVariableField==region1');
g_navNode_10_1_3_0=g_navNode_10_1_3.addNode('2082','Food Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/FoodandCosmetics/FoodAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-fc-fac','cspSectionEditorAlias==fdagov-edit-ac-cmm-fc','secondaryUrlVariableField==region1');
g_navNode_10_1_4=g_navNode_10_1.addNode('2054','Medical Devices',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_0=g_navNode_10_1_4.addNode('2083','Device Good Manufacturing Practice Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/DeviceGoodManufacturingPracticeAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_1=g_navNode_10_1_4.addNode('2103','National Mammography Quality Assurance Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/NationalMammographyQualityAssuranceAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2=g_navNode_10_1_4.addNode('2084','Medical Devices Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_0=g_navNode_10_1_4_2.addNode('2085','Anesthesiology and Respiratory Therapy Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/AnesthesiologyandRespiratoryTherapyDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_1=g_navNode_10_1_4_2.addNode('2086','Circulatory System Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/CirculatorySystemDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_2=g_navNode_10_1_4_2.addNode('2087','Clinical Chemistry and Clinical Toxicology Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/ClinicalChemistryandClinicalToxicologyDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_3=g_navNode_10_1_4_2.addNode('2088','Dental Products Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/DentalProductsPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_4=g_navNode_10_1_4_2.addNode('2089','Ear, Nose, and Throat Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/EarNoseandThroatDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_5=g_navNode_10_1_4_2.addNode('2090','Gastroenterology-Urology Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/Gastroenterology-UrologyDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_6=g_navNode_10_1_4_2.addNode('2091','General and Plastic Surgery Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/GeneralandPlasticSurgeryDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_7=g_navNode_10_1_4_2.addNode('2092','General Hospital and Personal Use Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/GeneralHospitalandPersonalUseDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_8=g_navNode_10_1_4_2.addNode('2093','Hematology and Pathology Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/HematologyandPathologyDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_9=g_navNode_10_1_4_2.addNode('2094','Immunology Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/ImmunologyDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_10=g_navNode_10_1_4_2.addNode('2095','Medical Devices Dispute Resolution Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/MedicalDevicesDisputeResolutionPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_11=g_navNode_10_1_4_2.addNode('2096','Microbiology Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/MicrobiologyDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_12=g_navNode_10_1_4_2.addNode('2097','Molecular and Clinical Genetics Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/MolecularandClinicalGeneticsPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_13=g_navNode_10_1_4_2.addNode('2098','Neurological Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/NeurologicalDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_14=g_navNode_10_1_4_2.addNode('2099','Obstetrics and Gynecology Devices',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/ObstetricsandGynecologyDevices/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_15=g_navNode_10_1_4_2.addNode('2100','Ophthalmic Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/OphthalmicDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_16=g_navNode_10_1_4_2.addNode('2101','Orthopaedic and Rehabilitation Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/OrthopaedicandRehabilitationDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_4_2_17=g_navNode_10_1_4_2.addNode('2102','Radiological Devices Panel',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/MedicalDevices/MedicalDevicesAdvisoryCommittee/RadiologicalDevicesPanel/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_5=g_navNode_10_1.addNode('2104','Pediatric Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/PediatricAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-ped-pa','secondaryUrlVariableField==region1');
g_navNode_10_1_6=g_navNode_10_1.addNode('2056','Radiation-Emitting Products',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Radiation-EmittingProducts/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_6_0=g_navNode_10_1_6.addNode('2105','Technical Electronic Product Radiation Safety Standards Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/Radiation-EmittingProducts/TechnicalElectronicProductRadiationSafetyStandardsCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-cdrh-webteam','cspSectionEditorAlias==fdagov-edit-cdrh-webteam','secondaryUrlVariableField==region1');
g_navNode_10_1_7=g_navNode_10_1.addNode('2106','Risk Communication Advisory Committee',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/RiskCommunicationAdvisoryCommittee/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-rc-rca','secondaryUrlVariableField==region1');
g_navNode_10_1_8=g_navNode_10_1.addNode('2107','Science Board to the Food and Drug Administration',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/ScienceBoardtotheFoodandDrugAdministration/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-sb-sb','secondaryUrlVariableField==region1');
g_navNode_10_1_9=g_navNode_10_1.addNode('2059','Toxicological Research',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/ToxicologicalResearch/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-tr','secondaryUrlVariableField==region1');
g_navNode_10_1_9_0=g_navNode_10_1_9.addNode('2109','Science Advisory Board to the National Center for Toxicological Research',ssUrlPrefix + 'AdvisoryCommittees/CommitteesMeetingMaterials/ToxicologicalResearch/ScienceAdvisoryBoardtotheNationalCenterforToxicologicalResearch/default.htm','cspSectionApproverAlias==fdagov-appr-ac-cmm-tr-nctr','secondaryUrlVariableField==region1');
g_navNode_10_2=g_navNode_10.addNode('2044','Calendar',ssUrlPrefix + 'AdvisoryCommittees/Calendar/default.htm','cspCheckinDisplay==Advisory','cspCheckinParameters==xSubType\x3dAdvisory Committee\x26xProfileTrigger\x3dAdvisoryCommittee\x26','cspDefaultSort==xEditionDate','cspSectionApproverAlias== fdagov-appr-ac-cal','cspSectionEditorAlias== fdagov-edit-ac-cal','cspSectionMainQuery==dDocType \x3csubstring\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Advisory Committee\x60','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_11=g_navNode_Root.addNode('1841','Inspections, Compliance, Enforcement, and Criminal Investigations',ssUrlPrefix + 'ICECI/default.htm','cspSectionApproverAlias==fdagov-appr-ice, fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_11_0=g_navNode_11.addNode('2110','Compliance Manuals',ssUrlPrefix + 'ICECI/ComplianceManuals/default.htm','cspSectionApproverAlias==fdagov-appr-ice-cm','secondaryUrlVariableField==region1');
g_navNode_11_0_0=g_navNode_11_0.addNode('2114','Regulatory Procedures Manual',ssUrlPrefix + 'ICECI/ComplianceManuals/RegulatoryProceduresManual/default.htm','cspSectionApproverAlias==fdagov-appr-ice-cm-rpm','secondaryUrlVariableField==region1');
g_navNode_11_0_1=g_navNode_11_0.addNode('2115','Compliance Policy Guidance Manual',ssUrlPrefix + 'ICECI/ComplianceManuals/CompliancePolicyGuidanceManual/default.htm','cspSectionApproverAlias==fdagov-appr-ice-cm-cpgm, fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','cspSectionMainQuery==xWebsites \x3ccontains\x3e \x60FDAgov\x60  \x3cAND\x3e  xWebsiteSection \x3cmatches\x3e \x60FDAgov\x3a2115\x60  \x3cAND\x3e  xPlacement \x3cmatches\x3e \x60List Item\x60 \x3cAND\x3e dDocType \x3cmatches\x3e \x60WebContent\x60','secondaryUrlVariableField==region1');
g_navNode_11_0_2=g_navNode_11_0.addNode('2117','Compliance Program Manual',ssUrlPrefix + 'ICECI/ComplianceManuals/ComplianceProgramManual/default.htm','cspSectionApproverAlias==fdagov-appr-ice-cm-cpm','secondaryUrlVariableField==region1');
g_navNode_11_0_3=g_navNode_11_0.addNode('2118','Revisions to Compliance Manuals',ssUrlPrefix + 'ICECI/ComplianceManuals/RevisionstoComplianceManuals/default.htm','cspSectionApproverAlias==fdagov-appr-ice-cm-rcm','secondaryUrlVariableField==region1');
g_navNode_11_1=g_navNode_11.addNode('2111','Inspections',ssUrlPrefix + 'ICECI/Inspections/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ins','secondaryUrlVariableField==region1');
g_navNode_11_1_0=g_navNode_11_1.addNode('2119','Field Management Directives',ssUrlPrefix + 'ICECI/Inspections/FieldManagementDirectives/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ins-fmd','secondaryUrlVariableField==region1');
g_navNode_11_1_0_0=g_navNode_11_1_0.addNode('3344','Canceled FMDs',ssUrlPrefix + 'ICECI/Inspections/FieldManagementDirectives/CanceledFMDs/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ins-fmd-can','secondaryUrlVariableField==region1');
g_navNode_11_1_1=g_navNode_11_1.addNode('2120','Inspection Guides',ssUrlPrefix + 'ICECI/Inspections/InspectionGuides/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ins-ig','secondaryUrlVariableField==region1');
g_navNode_11_1_1_0=g_navNode_11_1_1.addNode('3345','Inspection Technical Guides',ssUrlPrefix + 'ICECI/Inspections/InspectionGuides/InspectionTechnicalGuides/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ins-ig-itg','secondaryUrlVariableField==region1');
g_navNode_11_1_2=g_navNode_11_1.addNode('2121','Investigations Operations Manual',ssUrlPrefix + 'ICECI/Inspections/InvestigationsOperationsManual/default.htm','cspCheckinDisplay==IOM','cspCheckinParameters==dpTriggerValue\x3dLarge_Manuals\x26','cspPaginate==50','cspSectionApproverAlias==fdagov-appr-ice-ins-iom','cspSectionMainQuery==xWebsiteObjectType \x3cmatches\x3e \x60Native Document\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60FDAgov\x60  \x3cAND\x3e  xWebsiteSection \x3cmatches\x3e \x60FDAgov\x3a2121\x60','secondaryUrlVariableField==region1');
g_navNode_11_1_3=g_navNode_11_1.addNode('2122','Foreign Inspections',ssUrlPrefix + 'ICECI/Inspections/ForeignInspections/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ins-fi','secondaryUrlVariableField==region1');
g_navNode_11_1_3_0=g_navNode_11_1_3.addNode('2124','Foreign Inspection Program',ssUrlPrefix + 'ICECI/Inspections/ForeignInspections/ForeignInspectionProgram/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ins-fi-fip','secondaryUrlVariableField==region1');
g_navNode_11_1_3_1=g_navNode_11_1_3.addNode('2125','International Inspections \x26 Travel',ssUrlPrefix + 'ICECI/Inspections/ForeignInspections/InternationalInspectionsTravel/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ins-fi-iit','secondaryUrlVariableField==region1');
g_navNode_11_1_4=g_navNode_11_1.addNode('2123','Allergy Inspection Guide',ssUrlPrefix + 'ICECI/Inspections/AllergyInspectionGuide/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ins-aig','secondaryUrlVariableField==region1');
g_navNode_11_2=g_navNode_11.addNode('2112','Enforcement Actions',ssUrlPrefix + 'ICECI/EnforcementActions/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_11_2_0=g_navNode_11_2.addNode('3655','Enforcement Story',ssUrlPrefix + 'ICECI/EnforcementActions/EnforcementStory/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-safe-rc-er-es','secondaryUrlVariableField==region1');
g_navNode_11_2_0_0=g_navNode_11_2_0.addNode('2234','FDA Recall Policies',ssUrlPrefix + 'ICECI/EnforcementActions/EnforcementStory/FDARecallPolicies/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_11_2_0_1=g_navNode_11_2_0.addNode('3656','Enforcement Story 2007',ssUrlPrefix + 'ICECI/EnforcementActions/EnforcementStory/EnforcementStory2007/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-safe-rc-er-es-07','secondaryUrlVariableField==region1');
g_navNode_11_2_0_2=g_navNode_11_2_0.addNode('3657','Enforcement Story Archive',ssUrlPrefix + 'ICECI/EnforcementActions/EnforcementStory/EnforcementStoryArchive/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-safe-rc-er-es-arc','secondaryUrlVariableField==region1');
g_navNode_11_2_1=g_navNode_11_2.addNode('2126','Warning and Untitled Letters',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/default.htm','cspCheckinDisplay==WarningLetters','cspCheckinParameters==true','cspDefaultSort==xEditionDate','cspPaginate==50','cspSectionApproverAlias==fdagov-appr-cber-webteam','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x60\x3c\x24dateCurrent\x28-14\x29\x24\x3e\x60  \x3cAND\x3e  xEditionDate \x3c\x3d \x60\x3c\x24dateCurrent\x28\x29\x24\x3e\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_0=g_navNode_11_2_1.addNode('3922','2009',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/2009/default.htm','cspDefaultSort==xEditionDate','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/09 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/10 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_1=g_navNode_11_2_1.addNode('3812','2008',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/2008/default.htm','cspDefaultSort==xEditionDate','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/08 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/09 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_2=g_navNode_11_2_1.addNode('3813','2007',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/2007/default.htm','cspDefaultSort==xEditionDate','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/07 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x6012/31/07 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_3=g_navNode_11_2_1.addNode('3814','2006',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/2006/default.htm','cspDefaultSort==xEditionDate','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/06 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x6001/01/07 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_4=g_navNode_11_2_1.addNode('3921','2005',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/2005/default.htm','cspDefaultSort==xEditionDate','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/05 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/06 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_5=g_navNode_11_2_1.addNode('3928','2004',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/2004/default.htm','cspDefaultSort==xEditionDate','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/04 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/05 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_6=g_navNode_11_2_1.addNode('3929','2003',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/2003/default.htm','cspDefaultSort==xEditionDate','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/03 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/04 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_7=g_navNode_11_2_1.addNode('3930','2002',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/2002/default.htm','cspDefaultSort==xEditionDate','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/02 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/03 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_8=g_navNode_11_2_1.addNode('3931','2001',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/2001/default.htm','cspDefaultSort==xEditionDate','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/01 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/02 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_9=g_navNode_11_2_1.addNode('3932','2000',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/2000/default.htm','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/00 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/01 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_10=g_navNode_11_2_1.addNode('3933','1999',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/1999/default.htm','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/99 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/00 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_11=g_navNode_11_2_1.addNode('3934','1998',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/1998/default.htm','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/98 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/99 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_12=g_navNode_11_2_1.addNode('3935','1997',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/1997/default.htm','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/97 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/98 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_13=g_navNode_11_2_1.addNode('3936','1996',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/1996/default.htm','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/96 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/97 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_1_14=g_navNode_11_2_1.addNode('3937','1995',ssUrlPrefix + 'ICECI/EnforcementActions/WarningandUntitledLetters/1995/default.htm','cspPaginate==50','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Warning Letter\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/95 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/96 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_11_2_2=g_navNode_11_2.addNode('2127','Application Integrity Policy',ssUrlPrefix + 'ICECI/EnforcementActions/ApplicationIntegrityPolicy/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-aip','secondaryUrlVariableField==region1');
g_navNode_11_2_2_0=g_navNode_11_2_2.addNode('3346','Application Integrity Policy List',ssUrlPrefix + 'ICECI/EnforcementActions/ApplicationIntegrityPolicy/ApplicationIntegrityPolicyList/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-aip-aipl','secondaryUrlVariableField==region1');
g_navNode_11_2_3=g_navNode_11_2.addNode('2128','Bioresearch Monitoring',ssUrlPrefix + 'ICECI/EnforcementActions/BioresearchMonitoring/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-bm','secondaryUrlVariableField==region1');
g_navNode_11_2_3_0=g_navNode_11_2_3.addNode('2132','Overview',ssUrlPrefix + 'ICECI/EnforcementActions/BioresearchMonitoring/Overview/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-bm-ov','secondaryUrlVariableField==region1');
g_navNode_11_2_3_1=g_navNode_11_2_3.addNode('2133','Good Laboratory Practices References \x26 Guidance',ssUrlPrefix + 'ICECI/EnforcementActions/BioresearchMonitoring/GoodLaboratoryPracticesReferencesGuidance/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-bm-glp','secondaryUrlVariableField==region1');
g_navNode_11_2_3_2=g_navNode_11_2_3.addNode('2134','Nonclinical Laboratories Inspected under Good Laboratory Practices ',ssUrlPrefix + 'ICECI/EnforcementActions/BioresearchMonitoring/NonclinicalLaboratoriesInspectedunderGoodLaboratoryPractices/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-bm-ncli','secondaryUrlVariableField==region1');
g_navNode_11_2_3_2_0=g_navNode_11_2_3_2.addNode('3347','Active Labs Inspection List',ssUrlPrefix + 'ICECI/EnforcementActions/BioresearchMonitoring/NonclinicalLaboratoriesInspectedunderGoodLaboratoryPractices/ActiveLabsInspectionList/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-bm-ncli-al','secondaryUrlVariableField==region1');
g_navNode_11_2_3_2_1=g_navNode_11_2_3_2.addNode('3348','University Labs Inspection List',ssUrlPrefix + 'ICECI/EnforcementActions/BioresearchMonitoring/NonclinicalLaboratoriesInspectedunderGoodLaboratoryPractices/UniversityLabsInspectionList/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-bm-ncli-ul','secondaryUrlVariableField==region1');
g_navNode_11_2_3_2_2=g_navNode_11_2_3_2.addNode('3349','Foreign Labs Inspection List',ssUrlPrefix + 'ICECI/EnforcementActions/BioresearchMonitoring/NonclinicalLaboratoriesInspectedunderGoodLaboratoryPractices/ForeignLabsInspectionList/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-bm-ncli-fl','secondaryUrlVariableField==region1');
g_navNode_11_2_3_2_3=g_navNode_11_2_3_2.addNode('3351','Inactive Labs List',ssUrlPrefix + 'ICECI/EnforcementActions/BioresearchMonitoring/NonclinicalLaboratoriesInspectedunderGoodLaboratoryPractices/InactiveLabsList/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-bm-ncli-ina','secondaryUrlVariableField==region1');
g_navNode_11_2_3_2_4=g_navNode_11_2_3_2.addNode('3352','Inspections Codes',ssUrlPrefix + 'ICECI/EnforcementActions/BioresearchMonitoring/NonclinicalLaboratoriesInspectedunderGoodLaboratoryPractices/InspectionsCodes/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-bm-ncli-cod','secondaryUrlVariableField==region1');
g_navNode_11_2_3_2_5=g_navNode_11_2_3_2.addNode('3353','Codes Not In Use',ssUrlPrefix + 'ICECI/EnforcementActions/BioresearchMonitoring/NonclinicalLaboratoriesInspectedunderGoodLaboratoryPractices/CodesNotInUse/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-bm-ncli-cnu','secondaryUrlVariableField==region1');
g_navNode_11_2_3_2_6=g_navNode_11_2_3_2.addNode('3354','Glossary',ssUrlPrefix + 'ICECI/EnforcementActions/BioresearchMonitoring/NonclinicalLaboratoriesInspectedunderGoodLaboratoryPractices/Glossary/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-bm-ncli-glo','secondaryUrlVariableField==region1');
g_navNode_11_2_3_2_7=g_navNode_11_2_3_2.addNode('3355','Miscellaneous Abbreviations',ssUrlPrefix + 'ICECI/EnforcementActions/BioresearchMonitoring/NonclinicalLaboratoriesInspectedunderGoodLaboratoryPractices/MiscellaneousAbbreviations/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-bm-ncli-ma','secondaryUrlVariableField==region1');
g_navNode_11_2_4=g_navNode_11_2.addNode('2129','FDA Debarment List',ssUrlPrefix + 'ICECI/EnforcementActions/FDADebarmentList/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-dl','secondaryUrlVariableField==region1');
g_navNode_11_2_5=g_navNode_11_2.addNode('2130','Disqualified/Restricted/ Restrictions Removed/ Assurance Lists for Clinical Investigators',ssUrlPrefix + 'ICECI/EnforcementActions/DisqualifiedRestrictedAssuranceList/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ea-dral','secondaryUrlVariableField==region1');
g_navNode_11_3=g_navNode_11.addNode('2113','Criminal Investigations',ssUrlPrefix + 'ICECI/CriminalInvestigations/default.htm','cspSectionApproverAlias==fdagov-appr-ice-ci','secondaryUrlVariableField==region1');
g_navNode_12=g_navNode_Root.addNode('1843','Emergency Preparedness',ssUrlPrefix + 'EmergencyPreparedness/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-ep','secondaryUrlVariableField==region1');
g_navNode_12_0=g_navNode_12.addNode('3876','Crisis Management \x26 Emergency Preparedness',ssUrlPrefix + 'EmergencyPreparedness/CrisisManagementEmergencyPreparedness/index.htm','cspSectionApproverAlias==fdagov-appr-ep','cspSectionEditorAlias==fdagov-edit-ep','secondaryUrlVariableField==region1');
g_navNode_12_0_0=g_navNode_12_0.addNode('3877','FDA Emergency Response Plan Summaries',ssUrlPrefix + 'EmergencyPreparedness/CrisisManagementEmergencyPreparedness/FDAEmergencyResponsePlanSummaries/index.htm','cspSectionApproverAlias==fdagov-appr-ep','secondaryUrlVariableField==region1');
g_navNode_12_1=g_navNode_12.addNode('2158','Counterterrorism',ssUrlPrefix + 'EmergencyPreparedness/Counterterrorism/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam, fdagov-appr-cvm-commteam, fdagov-appr-ep, fdagov-appr-ep-ct','cspSectionEditorAlias==fdagov-edit-cvm-commteam, fdagov-edit-ep-ct','secondaryUrlVariableField==region1');
g_navNode_12_1_0=g_navNode_12_1.addNode('3386','Bioterrorism Act',ssUrlPrefix + 'EmergencyPreparedness/Counterterrorism/BioterrorismAct/default.htm','cspSectionApproverAlias==fdagov-appr-ep-ct-bta, fdagov-appr-ep','secondaryUrlVariableField==region1');
g_navNode_12_2=g_navNode_12.addNode('3387','Flu',ssUrlPrefix + 'EmergencyPreparedness/Flu/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam, fdagov-appr-ep, fdagov-appr-ep-pi','cspSectionEditorAlias==fdagov-edit-ep-pi','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_12_2_0=g_navNode_12_2.addNode('3878','Pandemic and Avian Flu Information',ssUrlPrefix + 'EmergencyPreparedness/Flu/PandemicandAvianFluInformation/index.htm','cspSectionApproverAlias==fdagov-appr-ep','secondaryUrlVariableField==region1');
g_navNode_13=g_navNode_Root.addNode('1844','International Programs',ssUrlPrefix + 'InternationalProgramsandActivities/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia, fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_13_0=g_navNode_13.addNode('3852','Globalization\x3a Geographic Programs',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_0_0=g_navNode_13_0.addNode('3983','Africa and Asia',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/AsiaandAfrica/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_0_1=g_navNode_13_0.addNode('3401','China',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/China/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-bob-ch','secondaryUrlVariableField==region1');
g_navNode_13_0_2=g_navNode_13_0.addNode('3402','Europe',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/EuropeanUnion/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-bob-eu','secondaryUrlVariableField==region1');
g_navNode_13_0_2_0=g_navNode_13_0_2.addNode('3984','European Union',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/EuropeanUnion/EuropeanUnion/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_0_2_0_0=g_navNode_13_0_2_0.addNode('3985','European Commission',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/EuropeanUnion/EuropeanUnion/EuropeanCommission/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_0_2_0_1=g_navNode_13_0_2_0.addNode('3986','European Food Safety Authority',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/EuropeanUnion/EuropeanUnion/EuropeanFoodSafetyAuthority/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_0_3=g_navNode_13_0.addNode('3987','Swiss Agency for Therapeutic Products, \x28SwissMedic\x29',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/Switzerland-SwissAgencyforTherapeuticProductsSwissmedic/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_0_4=g_navNode_13_0.addNode('3853','India',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/India/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_0_5=g_navNode_13_0.addNode('3403','Latin America',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/LatinAmerica/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-bob-la','secondaryUrlVariableField==region1');
g_navNode_13_0_6=g_navNode_13_0.addNode('3404','Middle East',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/MiddleEast/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-bob-me','secondaryUrlVariableField==region1');
g_navNode_13_0_7=g_navNode_13_0.addNode('3988','Quadtilateral and Trilateral',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/QuadtilateralandTrilateral/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_0_7_0=g_navNode_13_0_7.addNode('3989','Quadrilateral',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/QuadtilateralandTrilateral/Quadrilateral/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_0_7_1=g_navNode_13_0_7.addNode('3990','Trilateral',ssUrlPrefix + 'InternationalProgramsandActivities/FDABeyondOurBordersForeignOffices/QuadtilateralandTrilateral/Trilateral/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_1=g_navNode_13.addNode('2160','International Arrangements',ssUrlPrefix + 'InternationalProgramsandActivities/Agreements/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-arr','secondaryUrlVariableField==region1');
g_navNode_13_1_0=g_navNode_13_1.addNode('3849','Memoranda of Understanding',ssUrlPrefix + 'InternationalProgramsandActivities/Agreements/MemorandaofUnderstanding/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_1_1=g_navNode_13_1.addNode('3850','Confidentiality Commitments',ssUrlPrefix + 'InternationalProgramsandActivities/Agreements/ConfidentialityCommitments/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_2=g_navNode_13.addNode('3395','Communications',ssUrlPrefix + 'InternationalProgramsandActivities/InternationalCommunications/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-ic','secondaryUrlVariableField==region1');
g_navNode_13_2_0=g_navNode_13_2.addNode('3397','Embassy Briefings',ssUrlPrefix + 'InternationalProgramsandActivities/InternationalCommunications/EmbassyBriefings/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-ic-eb','secondaryUrlVariableField==region1');
g_navNode_13_3=g_navNode_13.addNode('3991','Capacity Building',ssUrlPrefix + 'InternationalProgramsandActivities/CapacityBuilding/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_4=g_navNode_13.addNode('3393','Harmonization and Multilateral Relations',ssUrlPrefix + 'InternationalProgramsandActivities/HarmonizationInitiatives/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-hi','secondaryUrlVariableField==region1');
g_navNode_13_4_0=g_navNode_13_4.addNode('3851','International Cooperation on Harmonisation of Technical Requirements for Registration of Veterinary Medicinal Products \x28VICH\x29',ssUrlPrefix + 'InternationalProgramsandActivities/HarmonizationInitiatives/InternationalCooperationonHarmonisationofTechnicalRequirementsforRegistrationofVeterinaryMedicinalProductsVICH/index.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_5=g_navNode_13.addNode('3504','Areas of International Activities',ssUrlPrefix + 'InternationalProgramsandActivities/AreasofInternationalActivities/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia','secondaryUrlVariableField==region1');
g_navNode_13_5_0=g_navNode_13_5.addNode('3390','Bilateral and Multilateral Activities',ssUrlPrefix + 'InternationalProgramsandActivities/AreasofInternationalActivities/BilateralandMultilateralActivities/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-bma','secondaryUrlVariableField==region1');
g_navNode_13_5_1=g_navNode_13_5.addNode('3391','Capacity Building',ssUrlPrefix + 'InternationalProgramsandActivities/AreasofInternationalActivities/Training/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-tra','secondaryUrlVariableField==region1');
g_navNode_13_5_1_0=g_navNode_13_5_1.addNode('3392','Middle East Partnership Initiative \x28MEPI\x29',ssUrlPrefix + 'InternationalProgramsandActivities/AreasofInternationalActivities/Training/MiddleEastPartnershipInitiativeMEPI/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-tra-mepi','secondaryUrlVariableField==region1');
g_navNode_13_5_2=g_navNode_13_5.addNode('3394','Information Sharing',ssUrlPrefix + 'InternationalProgramsandActivities/AreasofInternationalActivities/InformationSharing/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-is','secondaryUrlVariableField==region1');
g_navNode_13_5_3=g_navNode_13_5.addNode('3400','Major Ongoing Initiatives',ssUrlPrefix + 'InternationalProgramsandActivities/AreasofInternationalActivities/FDABeyondOurBordersForeignOffices/default.htm','cspSectionApproverAlias==fdagov-appr-ipa-aia-bob','secondaryUrlVariableField==region1');
g_navNode_13_6=g_navNode_13.addNode('2161','Imports, Exports \x26 Inspections',ssUrlPrefix + 'InternationalProgramsandActivities/ImportsExportsInspections/default.htm','secondaryUrlVariableField==region1');
g_navNode_13_7=g_navNode_13.addNode('2162','FDA Publications in Foreign Languages',ssUrlPrefix + 'InternationalProgramsandActivities/FDAPublicationsinForeignLanguages/default.htm','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_14=g_navNode_Root.addNode('1845','News \x26 Events',ssUrlPrefix + 'NewsEvents/default.htm','cspDefaultSort==EditionDate','cspSectionApproverAlias==fdagov-appr-oerwebteam','cspSectionMainQuery== ','cspUseParentNav==FALSE','secondaryUrlVariableField==region1');
g_navNode_14_0=g_navNode_14.addNode('3974','Newsroom',ssUrlPrefix + 'NewsEvents/Newsroom/default.htm','secondaryUrlVariableField==region1');
g_navNode_14_0_0=g_navNode_14_0.addNode('2169','Press Announcements',ssUrlPrefix + 'NewsEvents/Newsroom/PressAnnouncements/default.htm','cspCheckinParameters==xSubType\x3dPress Release\x26xProfileTrigger\x3dPress_Releases\x26','cspDefaultSort==EditionDate','cspSectionApproverAlias==fdagov-appr-ne-pr','cspSectionMainQuery==dDocType \x3csubstring\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Press Release\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x6001/01/09 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x6012/31/09 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_14_0_0_0=g_navNode_14_0_0.addNode('3732','2008',ssUrlPrefix + 'NewsEvents/Newsroom/PressAnnouncements/2008/default.htm','cspDefaultSort==EditionDate','cspSectionMainQuery==dDocType \x3csubstring\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Press Release\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x6001/01/08 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x6012/31/08 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_14_0_0_1=g_navNode_14_0_0.addNode('3725','2007',ssUrlPrefix + 'NewsEvents/Newsroom/PressAnnouncements/2007/default.htm','cspDefaultSort==EditionDate','cspSectionMainQuery==dDocType \x3csubstring\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Press Release\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x6001/01/07 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x6012/31/07 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_14_0_0_2=g_navNode_14_0_0.addNode('3726','2006',ssUrlPrefix + 'NewsEvents/Newsroom/PressAnnouncements/2006/default.htm','cspDefaultSort==EditionDate','cspSectionMainQuery==dDocType \x3csubstring\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Press Release\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x6001/01/06 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x6012/31/06 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_14_0_0_3=g_navNode_14_0_0.addNode('3727','2005',ssUrlPrefix + 'NewsEvents/Newsroom/PressAnnouncements/2005/default.htm','cspDefaultSort==EditionDate','cspSectionMainQuery==dDocType \x3csubstring\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Press Release\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x6001/01/05 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x6012/31/05 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_14_0_0_4=g_navNode_14_0_0.addNode('3728','2004',ssUrlPrefix + 'NewsEvents/Newsroom/PressAnnouncements/2004/default.htm','cspDefaultSort==EditionDate','cspSectionMainQuery==dDocType \x3csubstring\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Press Release\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x6001/01/04 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x6012/31/04 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_14_0_0_5=g_navNode_14_0_0.addNode('3729','2003',ssUrlPrefix + 'NewsEvents/Newsroom/PressAnnouncements/2003/default.htm','cspDefaultSort==EditionDate','cspSectionMainQuery==dDocType \x3csubstring\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Press Release\x60  \x3cAND\x3e  xEditionDate \x3e\x3d \x6001/01/03 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x6012/31/03 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_14_0_0_6=g_navNode_14_0_0.addNode('3730','2002 and Previous',ssUrlPrefix + 'NewsEvents/Newsroom/PressAnnouncements/2002/default.htm','cspDefaultSort==EditionDate','cspSectionMainQuery==dDocType \x3csubstring\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Press Release\x60    \x3cAND\x3e  xEditionDate \x3c \x6012/31/02 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_14_0_1=g_navNode_14_0.addNode('3408','Media Contacts',ssUrlPrefix + 'NewsEvents/Newsroom/MediaContacts/default.htm','secondaryUrlVariableField==region1');
g_navNode_14_0_2=g_navNode_14_0.addNode('3409','Media Transcripts',ssUrlPrefix + 'NewsEvents/Newsroom/MediaTranscripts/default.htm','secondaryUrlVariableField==region1');
g_navNode_14_1=g_navNode_14.addNode('3405','What\u2019s New By Topic',ssUrlPrefix + 'NewsEvents/What\u2019sNewByTopic/default.htm','cspSectionApproverAlias==fdagov-appr-ne-wn','secondaryUrlVariableField==region1');
g_navNode_14_2=g_navNode_14.addNode('2171','Approvals of FDA-Regulated Products',ssUrlPrefix + 'NewsEvents/ApprovalsofFDA-RegulatedProducts/default.htm','secondaryUrlVariableField==region1');
g_navNode_14_3=g_navNode_14.addNode('2172','Public Notices',ssUrlPrefix + 'NewsEvents/PublicNotices/default.htm','secondaryUrlVariableField==region1');
g_navNode_14_4=g_navNode_14.addNode('2173','In the Spotlight',ssUrlPrefix + 'NewsEvents/IntheSpotlight/default.htm','cspSectionApproverAlias==fdagov-appr-ne-is','secondaryUrlVariableField==region1');
g_navNode_14_5=g_navNode_14.addNode('2174','Testimony',ssUrlPrefix + 'NewsEvents/Testimony/default.htm','cspSectionApproverAlias==fdagov-appr-ne-tes','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_14_6=g_navNode_14.addNode('2175','Speeches',ssUrlPrefix + 'NewsEvents/Speeches/default.htm','cspSectionApproverAlias==fdagov-appr-ne-spe','secondaryUrlVariableField==region1');
g_navNode_14_7=g_navNode_14.addNode('2176','Meetings, Conferences, \x26 Workshops',ssUrlPrefix + 'NewsEvents/MeetingsConferencesWorkshops/default.htm','cspSectionApproverAlias==fdagov-appr-ne-mcw','secondaryUrlVariableField==region1');
g_navNode_14_7_0=g_navNode_14_7.addNode('3407','Past Meetings With FDA Officials',ssUrlPrefix + 'NewsEvents/MeetingsConferencesWorkshops/PastMeetingsWithFDAOfficials/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam','secondaryUrlVariableField==region1');
g_navNode_14_7_0_0=g_navNode_14_7_0.addNode('3777','2009 Public Calendars',ssUrlPrefix + 'NewsEvents/MeetingsConferencesWorkshops/PastMeetingsWithFDAOfficials/2009PublicCalendars/default.htm','secondaryUrlVariableField==region1');
g_navNode_14_7_0_1=g_navNode_14_7_0.addNode('3668','2008 Public Calendars',ssUrlPrefix + 'NewsEvents/MeetingsConferencesWorkshops/PastMeetingsWithFDAOfficials/2008MeetingsWithFDAOfficials/default.htm','secondaryUrlVariableField==region1');
g_navNode_14_7_0_2=g_navNode_14_7_0.addNode('3669','2007 Public Calendars',ssUrlPrefix + 'NewsEvents/MeetingsConferencesWorkshops/PastMeetingsWithFDAOfficials/2007MeetingsWithFDAOfficials/default.htm','secondaryUrlVariableField==region1');
g_navNode_15=g_navNode_Root.addNode('1846','Regulatory Information',ssUrlPrefix + 'RegulatoryInformation/default.htm','cspSectionApproverAlias==fdagov-appr-ri, fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_15_0=g_navNode_15.addNode('2182','Legislation',ssUrlPrefix + 'RegulatoryInformation/Legislation/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg','secondaryUrlVariableField==region1');
g_navNode_15_0_0=g_navNode_15_0.addNode('2187','Federal Food, Drug, and Cosmetic Act \x28FD\x26C Act\x29',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca, fdagov-appr-oerwebteam','cspSectionEditorAlias==fdagov-edit-ri-lg-fdca, fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_15_0_0_0=g_navNode_15_0_0.addNode('3836','FD\x26C Act Chapters I and II\x3a Short Title and Definitions',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/FDCActChaptersIandIIShortTitleandDefinitions/index.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca','secondaryUrlVariableField==region1');
g_navNode_15_0_0_1=g_navNode_15_0_0.addNode('3837','FD\x26C Act Chapter III\x3a Prohibited Acts and Penalties',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/FDCActChapterIIIProhibitedActsandPenalties/index.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca','secondaryUrlVariableField==region1');
g_navNode_15_0_0_2=g_navNode_15_0_0.addNode('3838','FD\x26C Act Chapter IV\x3a Food',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/FDCActChapterIVFood/index.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca','secondaryUrlVariableField==region1');
g_navNode_15_0_0_3=g_navNode_15_0_0.addNode('3839','FD\x26C Act Chapter V\x3a Drugs and Devices',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/FDCActChapterVDrugsandDevices/index.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca','secondaryUrlVariableField==region1');
g_navNode_15_0_0_4=g_navNode_15_0_0.addNode('3840','FD\x26C Act Chapter VI\x3a Cosmetics',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/FDCActChapterVICosmetics/index.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca','secondaryUrlVariableField==region1');
g_navNode_15_0_0_5=g_navNode_15_0_0.addNode('3841','FD\x26C Act Chapter VII\x3a General Authority',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/FDCActChapterVIIGeneralAuthority/index.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca','secondaryUrlVariableField==region1');
g_navNode_15_0_0_6=g_navNode_15_0_0.addNode('3842','FD\x26C Act Chapter VIII\x3a Imports and Exports',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/FDCActChapterVIIIImportsandExports/index.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca','secondaryUrlVariableField==region1');
g_navNode_15_0_0_7=g_navNode_15_0_0.addNode('3843','FD\x26C Act Chapter IX\x3a Miscellaneous',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/FDCActChapterIXMiscellaneous/index.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8=g_navNode_15_0_0.addNode('2189','Significant Amendments to the FD\x26C Act',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_0=g_navNode_15_0_0_8.addNode('2190','Food and Drug Administration Modernization Act \x28FDAMA\x29 of 1997',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/FDAMA/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-ma','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_0_0=g_navNode_15_0_0_8_0.addNode('3508','Full Text of FDAMA law',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/FDAMA/FullTextofFDAMAlaw/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-ma-f','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_0_1=g_navNode_15_0_0_8_0.addNode('3509','FDA Plan for Statutory Compliance',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/FDAMA/FDAPlanforStatutoryCompliance/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-ma-s','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_0_2=g_navNode_15_0_0_8_0.addNode('3510','FDAMA Implementation Chart',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/FDAMA/FDAMAImplementationChart/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-ma-i','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_1=g_navNode_15_0_0_8.addNode('2191','Orphan Drug Act',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/OrphanDrugAct/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-oda','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_2=g_navNode_15_0_0_8.addNode('2192','Prescription Drug Marketing Act of 1987',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/PrescriptionDrugMarketingActof1987/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-pdm','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_3=g_navNode_15_0_0_8.addNode('2193','Prescription Drug Amendments of 1992\x3b Prescription Drug User Fee Act of 1992',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/PrescriptionDrugAmendmentsof1992PrescriptionDrugUserFeeActof1992/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-pda','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_4=g_navNode_15_0_0_8.addNode('2194','Animal Medicinal Drug Use Clarification Act \x28AMDUCA\x29 of 1994',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/AnimalMedicinalDrugUseClarificationActAMDUCAof1994/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-amd','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_5=g_navNode_15_0_0_8.addNode('2196','Medical Device User Fee and Modernization Act \x28MDUFMA\x29 of 2002',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/MedicalDeviceUserFeeandModernizationActMDUFMAof2002/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-mduf','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_6=g_navNode_15_0_0_8.addNode('2197','Animal Drug User Fee Act of 2003',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/AnimalDrugUserFeeActof2003/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-aduf','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_7=g_navNode_15_0_0_8.addNode('2198','Minor Use and Minor Species Animal Health Act of 2004',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/MinorUseandMinorSpeciesAnimalHealthActof2004/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-mum','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_8=g_navNode_15_0_0_8.addNode('2200','Food and Drug Administration Amendments Act of 2007',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/FoodandDrugAdministrationAmendmentsActof2007/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-07','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_8_0=g_navNode_15_0_0_8_8.addNode('3511','Full Text of FDAAA Law',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/FoodandDrugAdministrationAmendmentsActof2007/FullTextofFDAAALaw/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-07-f','secondaryUrlVariableField==region1');
g_navNode_15_0_0_8_8_1=g_navNode_15_0_0_8_8.addNode('3512','FDAAA Implementation Chart',ssUrlPrefix + 'RegulatoryInformation/Legislation/FederalFoodDrugandCosmeticActFDCAct/SignificantAmendmentstotheFDCAct/FoodandDrugAdministrationAmendmentsActof2007/FDAAAImplementationChart/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-fdca-sa-07-i','secondaryUrlVariableField==region1');
g_navNode_15_0_1=g_navNode_15_0.addNode('2188','Other Laws Affecting FDA',ssUrlPrefix + 'RegulatoryInformation/Legislation/OtherLawsAffectingFDA/default.htm','cspSectionApproverAlias==fdagov-appr-ri-lg-ol','secondaryUrlVariableField==region1');
g_navNode_15_1=g_navNode_15.addNode('2183','Rules \x26 Regulations',ssUrlPrefix + 'RegulatoryInformation/RulesRegulations/default.htm','cspSectionApproverAlias==fdagov-appr-ri-rr','secondaryUrlVariableField==region1');
g_navNode_15_1_0=g_navNode_15_1.addNode('2186','Unified Agenda of Regulations',ssUrlPrefix + 'RegulatoryInformation/RulesRegulations/UnifiedAgendaofRegulations/default.htm','cspSectionApproverAlias==fdagov-appr-ri-rr-uar','cspSectionEditorAlias==fdagov-edit-ri-rr-uar','secondaryUrlVariableField==region1');
g_navNode_15_2=g_navNode_15.addNode('2184','Guidances',ssUrlPrefix + 'RegulatoryInformation/Guidances/default.htm','cspSectionApproverAlias==fdagov-appr-ri-gui, fdagov-appr-cber-webteam, fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cber-webteam, fdagov-edit-cvm-commteam','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_15_3=g_navNode_15.addNode('2185','Dockets Management',ssUrlPrefix + 'RegulatoryInformation/DocketsManagement/default.htm','cspSectionApproverAlias==fdagov-appr-ri-dm','secondaryUrlVariableField==region1');
g_navNode_15_3_0=g_navNode_15_3.addNode('3738','Find and Comment on FDA Dockets',ssUrlPrefix + 'RegulatoryInformation/DocketsManagement/FindandCommentonFDADockets/default.htm','secondaryUrlVariableField==region1');
g_navNode_15_3_1=g_navNode_15_3.addNode('3737','FDA Federal Registers \x28FR\x29',ssUrlPrefix + 'RegulatoryInformation/DocketsManagement/FDAFederalRegisterPublications/default.htm','secondaryUrlVariableField==region1');
g_navNode_15_3_2=g_navNode_15_3.addNode('3886','Historical Information',ssUrlPrefix + 'RegulatoryInformation/DocketsManagement/HistoricalInformation/index.htm','secondaryUrlVariableField==region1');
g_navNode_15_3_3=g_navNode_15_3.addNode('3736','Advisory Committees',ssUrlPrefix + 'RegulatoryInformation/DocketsManagement/AdvisoryCommittees/default.htm','secondaryUrlVariableField==region1');
g_navNode_15_4=g_navNode_15.addNode('1867','Freedom of Information',ssUrlPrefix + 'RegulatoryInformation/FreedomofInformation/default.htm','cspSectionApproverAlias==fdagov-appr-afda-foi','cspSectionEditorAlias==fdagov-edit-afda-foi','secondaryUrlVariableField==region1');
g_navNode_15_4_0=g_navNode_15_4.addNode('3338','How to Make a FOIA Request',ssUrlPrefix + 'RegulatoryInformation/FreedomofInformation/HowtoMakeaFOIARequest/default.htm','cspSectionApproverAlias==fdagov-appr-afda-foi-hmr','secondaryUrlVariableField==region1');
g_navNode_15_4_1=g_navNode_15_4.addNode('3339','FOIA Fees',ssUrlPrefix + 'RegulatoryInformation/FreedomofInformation/FOIAFees/default.htm','cspSectionApproverAlias==fdagov-appr-afda-foi-fee','secondaryUrlVariableField==region1');
g_navNode_15_4_2=g_navNode_15_4.addNode('2032','Electronic Reading Room',ssUrlPrefix + 'RegulatoryInformation/FreedomofInformation/ElectronicReadingRoom/default.htm','cspSectionApproverAlias==fdagov-appr-afda-foi-err','secondaryUrlVariableField==region1');
g_navNode_15_4_3=g_navNode_15_4.addNode('3340','FOIA Annual Reports',ssUrlPrefix + 'RegulatoryInformation/FreedomofInformation/FOIAAnnualReports/default.htm','cspSectionApproverAlias==fdagov-appr-afda-foi-ar','secondaryUrlVariableField==region1');
g_navNode_15_4_4=g_navNode_15_4.addNode('2034','Reference Materials',ssUrlPrefix + 'RegulatoryInformation/FreedomofInformation/ReferenceMaterials/default.htm','cspSectionApproverAlias==fdagov-appr-afda-foi-rm','secondaryUrlVariableField==region1');
g_navNode_15_4_5=g_navNode_15_4.addNode('3341','Who to Contact About FOIA',ssUrlPrefix + 'RegulatoryInformation/FreedomofInformation/WhotoContactAboutFOIA/default.htm','cspSectionApproverAlias==fdagov-appr-afda-foi-wca','secondaryUrlVariableField==region1');
g_navNode_16=g_navNode_Root.addNode('1847','Safety',ssUrlPrefix + 'Safety/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_16_0=g_navNode_16.addNode('2201','Report a Problem',ssUrlPrefix + 'Safety/ReportaProblem/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_16_0_0=g_navNode_16_0.addNode('3778','Consumer Complaint Coordinators',ssUrlPrefix + 'Safety/ReportaProblem/ConsumerComplaintCoordinators/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-safe-rp-ccc','secondaryUrlVariableField==region1');
g_navNode_16_0_1=g_navNode_16_0.addNode('3411','Questions and Answers\x3a Problem Reporting',ssUrlPrefix + 'Safety/ReportaProblem/QuestionsandAnswersProblemReporting/default.htm','cspSectionApproverAlias==fdagov-appr-safe-rp-qapr, fdagov-appr-oerwebteam, fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_16_1=g_navNode_16.addNode('2202','Recalls, Market Withdrawals, \x26 Safety Alerts',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/default.htm','cspCheckinDisplay==Recalls','cspCheckinParameters==xSubType \x3cmatches\x3e \x60Recall\x60','cspSectionApproverAlias==fdagov-appr-oerwebteam','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Recall\x60 \x3cAND\x3e \x3cAND\x3e  xEditionDate \x3e\x3d \x60\x3c\x24dateCurrent\x28-14\x29\x24\x3e\x60  \x3cAND\x3e  xEditionDate \x3c\x3d \x60\x3c\x24dateCurrent\x28\x29\x24\x3e\x60','secondaryUrlVariableField==region1');
g_navNode_16_1_0=g_navNode_16_1.addNode('2226','Recent Recalls, Market Withdrawals \x26 Safety Alerts',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/RecentRecallsMarketWithdrawalsSafetyAlerts/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-cber-webteam','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Recall\x60 \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/09 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/10 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_16_1_0_0=g_navNode_16_1_0.addNode('3943','2008',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/RecentRecallsMarketWithdrawalsSafetyAlerts/2008/index.htm','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Recall\x60 \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/08 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/09 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_16_1_0_1=g_navNode_16_1_0.addNode('3942','2007',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/RecentRecallsMarketWithdrawalsSafetyAlerts/2007/index.htm','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Recall\x60 \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/07 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/08 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_16_1_0_2=g_navNode_16_1_0.addNode('3941','2006',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/RecentRecallsMarketWithdrawalsSafetyAlerts/2006/index.htm','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Recall\x60 \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/06 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/07 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_16_1_0_3=g_navNode_16_1_0.addNode('3940','2005',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/RecentRecallsMarketWithdrawalsSafetyAlerts/2005/index.htm','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Recall\x60 \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/05 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/06 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_16_1_0_4=g_navNode_16_1_0.addNode('3939','2004',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/RecentRecallsMarketWithdrawalsSafetyAlerts/2004/index.htm','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Recall\x60 \x3cAND\x3e  xEditionDate \x3e\x3d \x601/01/04 12\x3a00 AM\x60  \x3cAND\x3e  xEditionDate \x3c \x601/01/05 12\x3a00 AM\x60','secondaryUrlVariableField==region1');
g_navNode_16_1_1=g_navNode_16_1.addNode('2228','Class I Recalls, Withdrawals and Safety Alerts Archive',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/ClassIRecallsWithdrawalsandSafetyAlertsArchive/default.htm','cspSectionApproverAlias== fdagov-appr-oerwebteam, fdagov-appr-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_16_1_2=g_navNode_16_1.addNode('2230','Import Alerts',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/ImportAlerts/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_16_1_3=g_navNode_16_1.addNode('3412','Enforcement Reports',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/EnforcementReports/default.htm','cspCheckinDisplay==EnforcementRpt','cspCheckinParameters==true','cspDefaultSort==xEditionDate','cspPaginate==TRUE','cspSectionApproverAlias==fdagov-appr-safe-rc-er, fdagov-appr-oerwebteam','cspSectionMainQuery==xSubType \x3cmatches\x3e \x60Enforcement Report\x60 \x3cAND\x3e dDocType \x3cmatches\x3e \x60WebContent\x60','secondaryUrlVariableField==region1');
g_navNode_16_1_3_0=g_navNode_16_1_3.addNode('3413','Report Index',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/EnforcementReports/ReportIndex/default.htm','cspSectionApproverAlias==fdagov-appr-safe-rc-er-ri, fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_16_1_4=g_navNode_16_1.addNode('2235','Industry Guidance',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/IndustryGuidance/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_16_1_5=g_navNode_16_1.addNode('2236','Model Recall Press Releases \x28for industry\x29',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/ModelRecallPressReleasesforindustry/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_16_1_6=g_navNode_16_1.addNode('2237','MedWatch The FDA Safety Information and Adverse Event Reporting Program',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/MedWatchTheFDASafetyInformationandAdverseEventReportingProgram/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-medwatch','secondaryUrlVariableField==region1');
g_navNode_16_1_6_0=g_navNode_16_1_6.addNode('3417','Safety Information',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/MedWatchTheFDASafetyInformationandAdverseEventReportingProgram/SafetyInformation/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-medwatch','secondaryUrlVariableField==region1');
g_navNode_16_1_6_0_0=g_navNode_16_1_6_0.addNode('3418','Safety Alerts for Human Medical Products',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/MedWatchTheFDASafetyInformationandAdverseEventReportingProgram/SafetyInformation/SafetyAlertsforHumanMedicalProducts/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-medwatch','secondaryUrlVariableField==region1');
g_navNode_16_1_6_0_1=g_navNode_16_1_6_0.addNode('3419','Safety-Related Drug Labeling Changes',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/MedWatchTheFDASafetyInformationandAdverseEventReportingProgram/SafetyInformation/Safety-RelatedDrugLabelingChanges/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-medwatch','secondaryUrlVariableField==region1');
g_navNode_16_1_6_1=g_navNode_16_1_6.addNode('3420','Submit Report',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/MedWatchTheFDASafetyInformationandAdverseEventReportingProgram/SubmitReport/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-medwatch','secondaryUrlVariableField==region1');
g_navNode_16_1_6_2=g_navNode_16_1_6.addNode('3421','How To Report',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/MedWatchTheFDASafetyInformationandAdverseEventReportingProgram/HowToReport/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-medwatch','secondaryUrlVariableField==region1');
g_navNode_16_1_6_3=g_navNode_16_1_6.addNode('3423','Download Forms',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/MedWatchTheFDASafetyInformationandAdverseEventReportingProgram/DownloadForms/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-medwatch','secondaryUrlVariableField==region1');
g_navNode_16_1_6_4=g_navNode_16_1_6.addNode('3424','Join The E-list',ssUrlPrefix + 'Safety/RecallsMarketWithdrawalsSafetyAlerts/MedWatchTheFDASafetyInformationandAdverseEventReportingProgram/JoinTheE-list/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam, fdagov-appr-medwatch','secondaryUrlVariableField==region1');
g_navNode_16_2=g_navNode_16.addNode('2203','Safety of Specific Products',ssUrlPrefix + 'Safety/SafetyofSpecificProducts/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_16_2_0=g_navNode_16_2.addNode('2209','Drug Safety Information for Consumers',ssUrlPrefix + 'Safety/SafetyofSpecificProducts/DrugSafetyInformationforConsumers/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_16_3=g_navNode_16.addNode('2204','Subscribe to Recall and Alert Information',ssUrlPrefix + 'Safety/SubscribetoRecallandAlertInformation/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_16_4=g_navNode_16.addNode('2205','FDA Patient Safety News',ssUrlPrefix + 'Safety/FDAPatientSafetyNews/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_16_5=g_navNode_16.addNode('2206','How We Monitor Product Safety',ssUrlPrefix + 'Safety/HowWeMonitorProductSafety/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam','cspSectionEditorAlias==fdagov-edit-safe-hmps','secondaryUrlVariableField==region1');
g_navNode_16_5_0=g_navNode_16_5.addNode('2207','Questions \x26 Answers',ssUrlPrefix + 'Safety/HowWeMonitorProductSafety/QuestionsAnswers/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_16_5_1=g_navNode_16_5.addNode('2208','Fact Sheet',ssUrlPrefix + 'Safety/HowWeMonitorProductSafety/FactSheet/default.htm','cspSectionApproverAlias==fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_17=g_navNode_Root.addNode('2614','Science \x26 Research',ssUrlPrefix + 'ScienceResearch/default.htm','cspSectionApproverAlias==fdagov-appr-sr, fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_17_0=g_navNode_17.addNode('2621','About Science \x26 Research at FDA',ssUrlPrefix + 'ScienceResearch/AboutScienceResearchatFDA/default.htm','cspSectionApproverAlias==fdagov-appr-sr-asr','secondaryUrlVariableField==region1');
g_navNode_17_1=g_navNode_17.addNode('2829','Research at FDA',ssUrlPrefix + 'ScienceResearch/ResearchatFDA/default.htm','cspSectionApproverAlias==fdagov-appr-sr-res','secondaryUrlVariableField==region1');
g_navNode_17_2=g_navNode_17.addNode('2830','Science Career Opportunities',ssUrlPrefix + 'ScienceResearch/ScienceCareerOpportunities/default.htm','cspSectionApproverAlias==fdagov-appr-sr-sco','secondaryUrlVariableField==region1');
g_navNode_17_3=g_navNode_17.addNode('2831','Extramural Funding Opportunities',ssUrlPrefix + 'ScienceResearch/ExtramuralFundingOpportunities/default.htm','cspSectionApproverAlias==fdagov-appr-sr-efo','secondaryUrlVariableField==region1');
g_navNode_17_3_0=g_navNode_17_3.addNode('2832','Funding for Rare Diseases',ssUrlPrefix + 'ScienceResearch/ExtramuralFundingOpportunities/FundingforRareDiseases/default.htm','cspSectionApproverAlias==fdagov-appr-sr-efo-frd','secondaryUrlVariableField==region1');
g_navNode_17_4=g_navNode_17.addNode('2616','Tools and Datasets',ssUrlPrefix + 'ScienceResearch/ToolsandDatasets/default.htm','cspSectionApproverAlias==fdagov-appr-sr-td','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_17_4_0=g_navNode_17_4.addNode('2647','Laboratory Methods',ssUrlPrefix + 'ScienceResearch/ToolsandDatasets/LaboratoryMethods/default.htm','cspSectionApproverAlias==fdagov-appr-sr-td-lm','secondaryUrlVariableField==region1');
g_navNode_17_4_1=g_navNode_17_4.addNode('2648','Scientific Methods \x26 Analytical Findings',ssUrlPrefix + 'ScienceResearch/ToolsandDatasets/ScientificMethodsAnalyticalFindings/default.htm','cspSectionApproverAlias==fdagov-appr-sr-td-smaf','secondaryUrlVariableField==region1');
g_navNode_17_4_2=g_navNode_17_4.addNode('2833','Bioinformatics Tools',ssUrlPrefix + 'ScienceResearch/ToolsandDatasets/BioinformaticsTools/default.htm','cspSectionApproverAlias==fdagov-appr-sr-td-bt','secondaryUrlVariableField==region1');
g_navNode_17_4_2_0=g_navNode_17_4_2.addNode('2834','ArrayTrack\x3csup\x3eTM\x3c/sup\x3e',ssUrlPrefix + 'ScienceResearch/ToolsandDatasets/BioinformaticsTools/Arraytrack/default.htm','cspSectionApproverAlias==fdagov-appr-sr-td-bt-at','secondaryUrlVariableField==region1');
g_navNode_17_4_2_1=g_navNode_17_4_2.addNode('2835','Decision Forest',ssUrlPrefix + 'ScienceResearch/ToolsandDatasets/BioinformaticsTools/DecisionForest/default.htm','cspSectionApproverAlias==fdagov-appr-sr-td-bt-df','secondaryUrlVariableField==region1');
g_navNode_17_4_2_2=g_navNode_17_4_2.addNode('2836','Endocrine Disruptor Knowledge Base \x28EDKB\x29',ssUrlPrefix + 'ScienceResearch/ToolsandDatasets/BioinformaticsTools/EndocrineDisruptorKnowledgebase/default.htm','cspSectionApproverAlias==fdagov-appr-sr-td-bt-edk','secondaryUrlVariableField==region1');
g_navNode_17_4_2_3=g_navNode_17_4_2.addNode('2837','MicroArray Quality Control \x28MAQC\x29',ssUrlPrefix + 'ScienceResearch/ToolsandDatasets/BioinformaticsTools/MicroarrayQualityControlProject/default.htm','cspSectionApproverAlias==fdagov-appr-sr-td-bt-mqcp','secondaryUrlVariableField==region1');
g_navNode_17_4_2_4=g_navNode_17_4_2.addNode('3927','Mold2',ssUrlPrefix + 'ScienceResearch/ToolsandDatasets/BioinformaticsTools/Mold2/index.htm','secondaryUrlVariableField==region1');
g_navNode_17_5=g_navNode_17.addNode('2619','Collaborative Opportunities',ssUrlPrefix + 'ScienceResearch/CollaborativeOpportunities/default.htm','cspSectionApproverAlias==fdagov-appr-sr-co','secondaryUrlVariableField==region1');
g_navNode_17_5_0=g_navNode_17_5.addNode('2676','Cooperative Research and Development Agreements \x28CRADAs\x29',ssUrlPrefix + 'ScienceResearch/CollaborativeOpportunities/CooperativeResearchandDevelopmentAgreementsCRADAs/default.htm','cspSectionApproverAlias==fdagov-appr-sr-co-crada','secondaryUrlVariableField==region1');
g_navNode_17_5_1=g_navNode_17_5.addNode('2677','Inventions',ssUrlPrefix + 'ScienceResearch/CollaborativeOpportunities/Inventions/default.htm','cspSectionApproverAlias==fdagov-appr-sr-co-inv','secondaryUrlVariableField==region1');
g_navNode_17_5_2=g_navNode_17_5.addNode('2678','Material Transfer Agreement',ssUrlPrefix + 'ScienceResearch/CollaborativeOpportunities/MaterialTransferAgreement/default.htm','cspSectionApproverAlias==fdagov-appr-sr-co-mta','secondaryUrlVariableField==region1');
g_navNode_17_6=g_navNode_17.addNode('2803','Science and Research Special Topics',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st','cspSectionEditorAlias==fdagov-edit-sr-st','secondaryUrlVariableField==region1');
g_navNode_17_6_0=g_navNode_17_6.addNode('2806','Women\'s Health Research',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/WomensHealthResearch/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-whr','secondaryUrlVariableField==region1');
g_navNode_17_6_1=g_navNode_17_6.addNode('2807','Pediatric Therapeutics',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/PediatricTherapeuticsResearch/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-ptr','secondaryUrlVariableField==region1');
g_navNode_17_6_2=g_navNode_17_6.addNode('2804','Critical Path Initiative',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/CriticalPathInitiative/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-cpi','cspSectionEditorAlias==fdagov-edit-sr-st-cpi','secondaryUrlVariableField==region1');
g_navNode_17_6_2_0=g_navNode_17_6_2.addNode('2838','Critical Path Opportunities Reports',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/CriticalPathInitiative/CriticalPathOpportunitiesReports/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-cpi-cpor','secondaryUrlVariableField==region1');
g_navNode_17_6_2_1=g_navNode_17_6_2.addNode('2839','Faces Behind Critical Path',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/CriticalPathInitiative/FacesBehindCriticalPath/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-cpi-fbcp','secondaryUrlVariableField==region1');
g_navNode_17_6_2_2=g_navNode_17_6_2.addNode('3899','Spotlight on CPI Projects',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/CriticalPathInitiative/SpotlightonCPIProjects/index.htm','cspSectionApproverAlias==fdagov-appr-sr-st-cpi','secondaryUrlVariableField==region1');
g_navNode_17_6_2_3=g_navNode_17_6_2.addNode('2840','Articles and Presentations',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/CriticalPathInitiative/ArticlesandPresentations/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-cpi-ap','secondaryUrlVariableField==region1');
g_navNode_17_6_2_4=g_navNode_17_6_2.addNode('3900','Past Events on CPI',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/CriticalPathInitiative/PastEventsonCPI/index.htm','cspSectionApproverAlias==fdagov-appr-sr-st-cpi','secondaryUrlVariableField==region1');
g_navNode_17_6_2_5=g_navNode_17_6_2.addNode('3901','Upcoming Events on CPI',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/CriticalPathInitiative/UpcomingEventsonCPI/index.htm','cspSectionApproverAlias==fdagov-appr-sr-st-cpi','secondaryUrlVariableField==region1');
g_navNode_17_6_3=g_navNode_17_6.addNode('2841','Nanotechnology',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/Nanotechnology/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-nano','secondaryUrlVariableField==region1');
g_navNode_17_6_3_0=g_navNode_17_6_3.addNode('2842','Frequently Asked Questions',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/Nanotechnology/FrequentlyAskedQuestions/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-nano-faq','secondaryUrlVariableField==region1');
g_navNode_17_6_3_1=g_navNode_17_6_3.addNode('2843','Nanotechnology Task Force',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/Nanotechnology/NanotechnologyTaskForce/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-nano-ntf','secondaryUrlVariableField==region1');
g_navNode_17_6_3_2=g_navNode_17_6_3.addNode('2844','Nanotechnology Task Force Report 2007',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/Nanotechnology/NanotechnologyTaskForceReport2007/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-nano-tf07','secondaryUrlVariableField==region1');
g_navNode_17_6_4=g_navNode_17_6.addNode('2805','Running Clinical Trials',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/RunningClinicalTrials/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-rct','secondaryUrlVariableField==region1');
g_navNode_17_6_4_0=g_navNode_17_6_4.addNode('2845','Report Problems to FDA',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/RunningClinicalTrials/ReportProblemstoFDA/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-rct-rp','secondaryUrlVariableField==region1');
g_navNode_17_6_4_1=g_navNode_17_6_4.addNode('2846','Complaints relating to Clinical trials',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/RunningClinicalTrials/ComplaintsrelatingtoClinicaltrials/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-rct-crct','secondaryUrlVariableField==region1');
g_navNode_17_6_4_2=g_navNode_17_6_4.addNode('2847','Guidances, Information Sheets, and Notices',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/RunningClinicalTrials/GuidancesInformationSheetsandNotices/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-rct-gisn','secondaryUrlVariableField==region1');
g_navNode_17_6_4_3=g_navNode_17_6_4.addNode('2848','Proposed Regulations and Draft Guidances',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/RunningClinicalTrials/ProposedRegulationsandDraftGuidances/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-rct-prdg','secondaryUrlVariableField==region1');
g_navNode_17_6_4_4=g_navNode_17_6_4.addNode('2849','Compliance \x26 Enforcement',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/RunningClinicalTrials/ComplianceEnforcement/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-rct-ce','secondaryUrlVariableField==region1');
g_navNode_17_6_4_5=g_navNode_17_6_4.addNode('2850','Educational Materials',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/RunningClinicalTrials/EducationalMaterials/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-rct-em','secondaryUrlVariableField==region1');
g_navNode_17_6_4_6=g_navNode_17_6_4.addNode('2851','Replies to Inquiries to FDA on Good Clinical Practice',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/RunningClinicalTrials/RepliestoInquiriestoFDAonGoodClinicalPractice/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-rct-ri','secondaryUrlVariableField==region1');
g_navNode_17_6_4_7=g_navNode_17_6_4.addNode('2852','Information for Patients',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/RunningClinicalTrials/InformationforPatients/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-rct-ip','secondaryUrlVariableField==region1');
g_navNode_17_6_5=g_navNode_17_6.addNode('2853','Peer Review of Scientific Information and Assessments',ssUrlPrefix + 'ScienceResearch/ScienceandResearchSpecialTopics/PeerReviewofScientificInformationandAssessments/default.htm','cspSectionApproverAlias==fdagov-appr-sr-st-pr','cspSectionEditorAlias==fdagov-edit-sr-st-pr','secondaryUrlVariableField==region1');
g_navNode_17_7=g_navNode_17.addNode('3515','Meetings, Conferences, and Workshops',ssUrlPrefix + 'ScienceResearch/MeetingsConferencesandWorkshops/default.htm','cspSectionApproverAlias==fdagov-appr-sr-mcw','secondaryUrlVariableField==region1');
g_navNode_17_7_0=g_navNode_17_7.addNode('3516','Science Forum',ssUrlPrefix + 'ScienceResearch/MeetingsConferencesandWorkshops/ScienceForum/default.htm','cspSectionApproverAlias==fdagov-appr-sr-mcw-sf','secondaryUrlVariableField==region1');
g_navNode_17_7_1=g_navNode_17_7.addNode('3517','Science Writers\' Forum',ssUrlPrefix + 'ScienceResearch/MeetingsConferencesandWorkshops/ScienceWritersForum/default.htm','cspSectionApproverAlias==fdagov-appr-sr-mcw-swf','secondaryUrlVariableField==region1');
g_navNode_17_7_2=g_navNode_17_7.addNode('3646','Public Science Meetings',ssUrlPrefix + 'ScienceResearch/MeetingsConferencesandWorkshops/PublicScienceMeetings/default.htm','cspSectionApproverAlias==fdagov-appr-sr-mcw-psm','secondaryUrlVariableField==region1');
g_navNode_17_8=g_navNode_17.addNode('3926','Field Science',ssUrlPrefix + 'ScienceResearch/FieldScience/index.htm','cspSectionApproverAlias==fdagov-appr-sr-fs','secondaryUrlVariableField==region1');
g_navNode_18=g_navNode_Root.addNode('1849','Training \x26 Continuing Education Courses',ssUrlPrefix + 'TrainingContinuingEducationCourses/default.htm','cspSectionApproverAlias==fdagov-appr-tcec, fdagov-appr-oerwebteam','cspSectionEditorAlias==fdagov-edit-tcec','secondaryUrlVariableField==region1');
g_navNode_18_0=g_navNode_18.addNode('2243','By Topic',ssUrlPrefix + 'TrainingContinuingEducationCourses/ByTopic/default.htm','cspSectionApproverAlias==fdagov-appr-tcec','cspSectionEditorAlias==fdagov-edit-tcec','secondaryUrlVariableField==region1');
g_navNode_18_1=g_navNode_18.addNode('2244','By Delivery',ssUrlPrefix + 'TrainingContinuingEducationCourses/ByDeliverywebvideoetc./default.htm','cspSectionApproverAlias==fdagov-appr-tcec','cspSectionEditorAlias==fdagov-edit-tcec','secondaryUrlVariableField==region1');
g_navNode_18_2=g_navNode_18.addNode('2245','By Audience',ssUrlPrefix + 'TrainingContinuingEducationCourses/ByAudience/default.htm','cspSectionApproverAlias==fdagov-appr-tcec-ba','cspSectionEditorAlias==fdagov-edit-tcec','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_18_2_0=g_navNode_18_2.addNode('2247','For State, Local, \x26 Tribal Regulators',ssUrlPrefix + 'TrainingContinuingEducationCourses/ByAudience/ForStateLocalTribalRegulators/default.htm','cspSectionApproverAlias==fdagov-appr-tcec-ba-slt','cspSectionEditorAlias==fdagov-edit-tcec','secondaryUrlVariableField==region1');
g_navNode_18_2_1=g_navNode_18_2.addNode('2248','For Industry',ssUrlPrefix + 'TrainingContinuingEducationCourses/ByAudience/ForIndustry/default.htm','cspSectionApproverAlias==fdagov-appr-tcec-ba-ind','cspSectionEditorAlias==fdagov-edit-tcec','secondaryUrlVariableField==region1');
g_navNode_18_2_2=g_navNode_18_2.addNode('2249','For Health Professionals',ssUrlPrefix + 'TrainingContinuingEducationCourses/ByAudience/ForHealthProfessionals/default.htm','cspSectionApproverAlias==fdagov-appr-tcec-ba-hp','cspSectionEditorAlias==fdagov-edit-tcec','secondaryUrlVariableField==region1');
g_navNode_18_2_3=g_navNode_18_2.addNode('2250','For FDA Employees',ssUrlPrefix + 'TrainingContinuingEducationCourses/ByAudience/ForFDAEmployees/default.htm','cspSectionApproverAlias==fdagov-appr-tcec-ba-emp','cspSectionEditorAlias==fdagov-edit-tcec','secondaryUrlVariableField==region1');
g_navNode_19=g_navNode_Root.addNode('1850','For Consumers',ssUrlPrefix + 'ForConsumers/default.htm','cspSectionApproverAlias==fdagov-appr-fc, fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_19_0=g_navNode_19.addNode('2260','Consumer Information A-Z',ssUrlPrefix + 'ForConsumers/ConsumerInformationA-Z/default.htm','cspSectionApproverAlias==fdagov-appr-fc-az','secondaryUrlVariableField==region1');
g_navNode_19_1=g_navNode_19.addNode('2251','Consumer Health Information by Topic',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyTopic/default.htm','cspSectionApproverAlias==fdagov-appr-fc-chit, fdagov-appr-cber-webteam','cspSectionEditorAlias==fdagov-edit-cber-webteam','secondaryUrlVariableField==region1');
g_navNode_19_2=g_navNode_19.addNode('2263','General Health Information',ssUrlPrefix + 'ForConsumers/GeneralHealthInformation/default.htm','cspSectionApproverAlias==fdagov-appr-fc-ghi','secondaryUrlVariableField==region1');
g_navNode_19_2_0=g_navNode_19_2.addNode('3483','Consumer Updates',ssUrlPrefix + 'ForConsumers/GeneralHealthInformation/ConsumerUpdates/default.htm','cspSectionApproverAlias==fdagov-appr-fc-ghi-cu','secondaryUrlVariableField==region1');
g_navNode_19_2_1=g_navNode_19_2.addNode('2275','Quick Info for Your Health \x28easy readers\x29',ssUrlPrefix + 'ForConsumers/GeneralHealthInformation/QuickInfoforYourHealtheasyreaders/default.htm','cspSectionApproverAlias==fdagov-appr-fc-ghi-qiyh','secondaryUrlVariableField==region1');
g_navNode_19_2_2=g_navNode_19_2.addNode('2276','Health Topics \x28Heart Health, Diabetes\x29',ssUrlPrefix + 'ForConsumers/GeneralHealthInformation/HealthTopicsHeartHealthDiabetes/default.htm','cspSectionApproverAlias==fdagov-appr-fc-ghi-ht','secondaryUrlVariableField==region1');
g_navNode_19_2_2_0=g_navNode_19_2_2.addNode('3484','FDA Heart Health Online',ssUrlPrefix + 'ForConsumers/GeneralHealthInformation/HealthTopicsHeartHealthDiabetes/FDAHeartHealthOnline/default.htm','cspSectionApproverAlias==fdagov-appr-fc-ghi-ht-hho','secondaryUrlVariableField==region1');
g_navNode_19_2_3=g_navNode_19_2.addNode('2277','FDA \x26 You',ssUrlPrefix + 'ForConsumers/GeneralHealthInformation/FDAYou/default.htm','cspSectionApproverAlias==fdagov-appr-fc-ghi-fny','secondaryUrlVariableField==region1');
g_navNode_19_2_4=g_navNode_19_2.addNode('2278','Maturity Health Matters',ssUrlPrefix + 'ForConsumers/GeneralHealthInformation/MaturityHealthMatters/default.htm','cspSectionApproverAlias==fdagov-appr-fc-ghi-mhm','secondaryUrlVariableField==region1');
g_navNode_19_3=g_navNode_19.addNode('3485','Consumer Health Information Archive',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationArchive/default.htm','csp508TitleText== ','cspCheckinDisplay==Consumer','cspCheckinParameters==true','cspSectionApproverAlias==fdagov-appr-fc-chiar','cspSectionMainQuery==dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xSubType \x3cmatches\x3e \x60Consumer Update\x60  \x3cAND\x3e  dInDate \x3e\x3d \x60\x3c\x24dateCurrent\x28-365\x29\x24\x3e\x60  \x3cAND\x3e  dInDate \x3c\x3d \x60\x3c\x24dateCurrent\x28\x29\x24\x3e\x60','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_19_4=g_navNode_19.addNode('2254','Consumer Health Information by Audience',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/default.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau','secondaryUrlVariableField==region1');
g_navNode_19_4_0=g_navNode_19_4.addNode('2286','For Women',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/ForWomen/default.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau-fw','secondaryUrlVariableField==region1');
g_navNode_19_4_0_0=g_navNode_19_4_0.addNode('3975','Free Publications',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/ForWomen/FreePublications/index.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau-fw','secondaryUrlVariableField==region1');
g_navNode_19_4_0_1=g_navNode_19_4_0.addNode('3978','Take Time to Care Program',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/ForWomen/TakeTimetoCareProgram/index.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau-fw','secondaryUrlVariableField==region1');
g_navNode_19_4_0_2=g_navNode_19_4_0.addNode('3979','Women\u2019s Health Topics',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/ForWomen/Women\u2019sHealthTopics/index.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau-fw','secondaryUrlVariableField==region1');
g_navNode_19_4_1=g_navNode_19_4.addNode('2287','For Patient Advocates',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/ForPatientAdvocates/default.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau-fpa','secondaryUrlVariableField==region1');
g_navNode_19_4_1_0=g_navNode_19_4_1.addNode('3955','HIV and AIDS Activities',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/ForPatientAdvocates/HIVandAIDSActivities/index.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau-fpa','secondaryUrlVariableField==region1');
g_navNode_19_4_1_1=g_navNode_19_4_1.addNode('3956','Speeding Access to Important New Therapies',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/ForPatientAdvocates/SpeedingAccesstoImportantNewTherapies/index.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau-fpa','secondaryUrlVariableField==region1');
g_navNode_19_4_1_2=g_navNode_19_4_1.addNode('3957','Participating in Clinical Trials',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/ForPatientAdvocates/ParticipatinginClinicalTrials/index.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau-fpa','secondaryUrlVariableField==region1');
g_navNode_19_4_1_3=g_navNode_19_4_1.addNode('3958','Patient Involvement',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/ForPatientAdvocates/PatientInvolvement/index.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau-fpa','secondaryUrlVariableField==region1');
g_navNode_19_4_1_4=g_navNode_19_4_1.addNode('3959','Cancer Liaison Program',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/ForPatientAdvocates/CancerLiaisonProgram/index.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau-fpa','secondaryUrlVariableField==region1');
g_navNode_19_4_2=g_navNode_19_4.addNode('2290','For Kids \x28Kids\u2019 Home Page\x29',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/ForKids/default.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau-fk','secondaryUrlVariableField==region1');
g_navNode_19_4_3=g_navNode_19_4.addNode('2291','Pediatric Health',ssUrlPrefix + 'ForConsumers/ConsumerHealthInformationbyAudience/PediatricHealth/default.htm','cspSectionApproverAlias==fdagov-appr-fc-chiau-ph','secondaryUrlVariableField==region1');
g_navNode_19_5=g_navNode_19.addNode('3834','Protect Yourself',ssUrlPrefix + 'ForConsumers/ProtectYourself/index.htm','cspSectionApproverAlias==fdagov-appr-fc-py','secondaryUrlVariableField==region1');
g_navNode_19_6=g_navNode_19.addNode('3835','Consumer Publications',ssUrlPrefix + 'ForConsumers/ConsumerPublications/index.htm','secondaryUrlVariableField==region1');
g_navNode_20=g_navNode_Root.addNode('1851','For Industry',ssUrlPrefix + 'ForIndustry/default.htm','cspSectionApproverAlias==fdagov-appr-fi, fdagov-appr-cder-webteam, fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_20_0=g_navNode_20.addNode('2297','User Fees',ssUrlPrefix + 'ForIndustry/UserFees/default.htm','cspSectionApproverAlias==fdagov-appr-fi-uf','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_20_0_0=g_navNode_20_0.addNode('3294','Animal Drug User Fee Act \x28ADUFA\x29',ssUrlPrefix + 'ForIndustry/UserFees/AnimalDrugUserFeeActADUFA/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_20_0_1=g_navNode_20_0.addNode('3295','Animal Generic Drug User Fee Act \x28AGDUFA\x29',ssUrlPrefix + 'ForIndustry/UserFees/AnimalGenericDrugUserFeeActAGDUFA/default.htm','cspSectionApproverAlias==fdagov-appr-cvm-commteam','cspSectionEditorAlias==fdagov-edit-cvm-commteam','secondaryUrlVariableField==region1');
g_navNode_20_0_2=g_navNode_20_0.addNode('2335','Prescription Drug User Fee Act \x28PDUFA\x29',ssUrlPrefix + 'ForIndustry/UserFees/PrescriptionDrugUserFee/default.htm','cspSectionApproverAlias==fdagov-appr-cder-webteam, fdagov-appr-fi-uf-pdufa','cspSectionEditorAlias==fdagov-edit-cber-webteam, fdagov-edit-fi-uf-pdufa','secondaryUrlVariableField==region1');
g_navNode_20_0_3=g_navNode_20_0.addNode('2336','Medical Device User Fee and Modernization Act \x28MDUFMA\x29',ssUrlPrefix + 'ForIndustry/UserFees/MedicalDeviceUserFeeandModernizationAct/default.htm','cspSectionApproverAlias==fdagov-appr-fi-uf-mdufma','secondaryUrlVariableField==region1');
g_navNode_20_0_4=g_navNode_20_0.addNode('2337','Mammography Facility Fees \x28MQSA\x29',ssUrlPrefix + 'ForIndustry/UserFees/MammographyFacilityFee/default.htm','cspSectionApproverAlias==fdagov-appr-fi-uf-mqsa','secondaryUrlVariableField==region1');
g_navNode_20_0_5=g_navNode_20_0.addNode('2338','Color Additive Certification Fees',ssUrlPrefix + 'ForIndustry/UserFees/ColorAdditiveCertificationFees/default.htm','cspSectionApproverAlias==fdagov-appr-fi-uf-cacf','secondaryUrlVariableField==region1');
g_navNode_20_0_6=g_navNode_20_0.addNode('2339','Export Certificate Fees',ssUrlPrefix + 'ForIndustry/UserFees/ExportCertificateFees/default.htm','cspSectionApproverAlias==fdagov-appr-fi-uf-ecf','secondaryUrlVariableField==region1');
g_navNode_20_0_7=g_navNode_20_0.addNode('2340','Freedom of Information Act Fees \x28FOIA\x29',ssUrlPrefix + 'ForIndustry/UserFees/FreedomofInformationAct/default.htm','cspSectionApproverAlias==fdagov-appr-fi-uf-foia','secondaryUrlVariableField==region1');
g_navNode_20_1=g_navNode_20.addNode('2298','Small Business Assistance',ssUrlPrefix + 'ForIndustry/SmallBusinessAssistance/default.htm','cspSectionApproverAlias==fdagov-appr-fi-sba','secondaryUrlVariableField==region1');
g_navNode_20_1_0=g_navNode_20_1.addNode('2341','Small Business Guide to FDA',ssUrlPrefix + 'ForIndustry/SmallBusinessAssistance/SmallBusinessGuidetoFDA/default.htm','cspSectionApproverAlias==fdagov-appr-fi-sba-sbg','secondaryUrlVariableField==region1');
g_navNode_20_1_1=g_navNode_20_1.addNode('2342','Small Business Representatives',ssUrlPrefix + 'ForIndustry/SmallBusinessAssistance/SmallBusinessRepresentatives/default.htm','cspSectionApproverAlias==fdagov-appr-fi-sba-sbr','secondaryUrlVariableField==region1');
g_navNode_20_2=g_navNode_20.addNode('2299','Import Program',ssUrlPrefix + 'ForIndustry/ImportProgram/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ip','secondaryUrlVariableField==region1');
g_navNode_20_2_0=g_navNode_20_2.addNode('2343','Import Program Overview',ssUrlPrefix + 'ForIndustry/ImportProgram/ImportProgramOverview/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ip-ipo','cspSectionEditorAlias==fdagov-edit-fi-ip-ipo','secondaryUrlVariableField==region1');
g_navNode_20_2_1=g_navNode_20_2.addNode('2344','Import Operations',ssUrlPrefix + 'ForIndustry/ImportProgram/ImportOperations/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ip-io','cspSectionEditorAlias==fdagov-edit-fi-ip-io','secondaryUrlVariableField==region1');
g_navNode_20_2_2=g_navNode_20_2.addNode('2345','Admissibility Determinations for Shipments of Foreign-origin \x28OASIS\x29',ssUrlPrefix + 'ForIndustry/ImportProgram/AdmissibilityDeterminationsforShipmentsofForeign-originOASIS/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ip-oasis','secondaryUrlVariableField==region1');
g_navNode_20_2_3=g_navNode_20_2.addNode('2346','Import Refusals',ssUrlPrefix + 'ForIndustry/ImportProgram/ImportRefusals/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ip-ir','secondaryUrlVariableField==region1');
g_navNode_20_2_3_0=g_navNode_20_2_3.addNode('2347','OASIS Reports - Import Refusals',ssUrlPrefix + 'ForIndustry/ImportProgram/ImportRefusals/OASISReports-ImportRefusals/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ip-ir-ir','cspSectionEditorAlias==fdagov-edit-fi-ip-ir-ir','secondaryUrlVariableField==region1');
g_navNode_20_2_4=g_navNode_20_2.addNode('2348','Prior Notice on Foods',ssUrlPrefix + 'ForIndustry/ImportProgram/PriorNoticeonFoods/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ip-pnf','cspSectionEditorAlias==fdagov-edit-fi-ip-pnf','secondaryUrlVariableField==region1');
g_navNode_20_2_5=g_navNode_20_2.addNode('2349','Product Code Builder',ssUrlPrefix + 'ForIndustry/ImportProgram/ProductCodeBuilderforFoods/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ip-pcb','cspSectionEditorAlias==fdagov-edit-fi-ip-pcb','secondaryUrlVariableField==region1');
g_navNode_20_2_6=g_navNode_20_2.addNode('2350','Import for Export',ssUrlPrefix + 'ForIndustry/ImportProgram/ImportforExport/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ip-ie','cspSectionEditorAlias==fdagov-edit-fi-ip-ie','secondaryUrlVariableField==region1');
g_navNode_20_2_7=g_navNode_20_2.addNode('2351','Import Policy and Information by Product',ssUrlPrefix + 'ForIndustry/ImportProgram/ImportPolicyandInformationbyProduct/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ip-ipip','cspSectionEditorAlias==fdagov-edit-fi-ip-ipip','secondaryUrlVariableField==region1');
g_navNode_20_2_7_0=g_navNode_20_2_7.addNode('2352','Policy on Importation of Drugs \x281998\x29',ssUrlPrefix + 'ForIndustry/ImportProgram/ImportPolicyandInformationbyProduct/PolicyonImportationofDrugs1998/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ip-ipip-dru','secondaryUrlVariableField==region1');
g_navNode_20_3=g_navNode_20.addNode('2300','Color Additives',ssUrlPrefix + 'ForIndustry/ColorAdditives/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_0=g_navNode_20_3.addNode('2353','Regulatory Process \x26 Historical Perspectives',ssUrlPrefix + 'ForIndustry/ColorAdditives/RegulatoryProcessHistoricalPerspectives/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_1=g_navNode_20_3.addNode('2354','Color Additive Inventories',ssUrlPrefix + 'ForIndustry/ColorAdditives/ColorAdditiveInventories/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_1_0=g_navNode_20_3_1.addNode('2355','For Use in Foods, Drugs, Medical Devices \x26 Cosmetics',ssUrlPrefix + 'ForIndustry/ColorAdditives/ColorAdditiveInventories/ForUseinFoodsDrugsMedicalDevicesCosmetics/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_1_0_0=g_navNode_20_3_1_0.addNode('2356','Food and Color Additive Approvals',ssUrlPrefix + 'ForIndustry/ColorAdditives/ColorAdditiveInventories/ForUseinFoodsDrugsMedicalDevicesCosmetics/FoodandColorAdditiveApprovals/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_2=g_navNode_20_3.addNode('2357','Color Additives in Specific Products',ssUrlPrefix + 'ForIndustry/ColorAdditives/ColorAdditivesinSpecificProducts/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_2_0=g_navNode_20_3_2.addNode('2358','In Cosmetics',ssUrlPrefix + 'ForIndustry/ColorAdditives/ColorAdditivesinSpecificProducts/InCosmetics/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_2_1=g_navNode_20_3_2.addNode('2359','In Food',ssUrlPrefix + 'ForIndustry/ColorAdditives/ColorAdditivesinSpecificProducts/InFood/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_2_2=g_navNode_20_3_2.addNode('2360','In Medical Devices',ssUrlPrefix + 'ForIndustry/ColorAdditives/ColorAdditivesinSpecificProducts/InMedicalDevices/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_2_3=g_navNode_20_3_2.addNode('2361','In Drugs',ssUrlPrefix + 'ForIndustry/ColorAdditives/ColorAdditivesinSpecificProducts/InDrugs/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_3=g_navNode_20_3.addNode('2362','Color Additive Petitions',ssUrlPrefix + 'ForIndustry/ColorAdditives/ColorAdditivePetitions/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_4=g_navNode_20_3.addNode('2365','Guidance, Compliance, \x26 Regulatory Information',ssUrlPrefix + 'ForIndustry/ColorAdditives/GuidanceComplianceRegulatoryInformation/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_4_0=g_navNode_20_3_4.addNode('2366','Color Additive Listing Regulations',ssUrlPrefix + 'ForIndustry/ColorAdditives/GuidanceComplianceRegulatoryInformation/ColorAdditiveListingRegulations/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_4_0_0=g_navNode_20_3_4_0.addNode('2373','General Provisions, Packaging \x26 Labeling Color Additives, \x26 Safety Evaluation',ssUrlPrefix + 'ForIndustry/ColorAdditives/GuidanceComplianceRegulatoryInformation/ColorAdditiveListingRegulations/GeneralProvisionsPackagingLabelingColorAdditivesSafetyEvaluation/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_4_0_1=g_navNode_20_3_4_0.addNode('2374','Color Additive Petitions',ssUrlPrefix + 'ForIndustry/ColorAdditives/GuidanceComplianceRegulatoryInformation/ColorAdditiveListingRegulations/ColorAdditivePetitions/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_4_0_2=g_navNode_20_3_4_0.addNode('2375','Listing of Color Additives Exempt from Certification',ssUrlPrefix + 'ForIndustry/ColorAdditives/GuidanceComplianceRegulatoryInformation/ColorAdditiveListingRegulations/ListingofColorAdditivesExemptfromCertification/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_4_0_3=g_navNode_20_3_4_0.addNode('2376','Listing of Color Additives Subject to Certification',ssUrlPrefix + 'ForIndustry/ColorAdditives/GuidanceComplianceRegulatoryInformation/ColorAdditiveListingRegulations/ListingofColorAdditivesSubjecttoCertification/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_4_0_4=g_navNode_20_3_4_0.addNode('2377','Color Additive Certification',ssUrlPrefix + 'ForIndustry/ColorAdditives/GuidanceComplianceRegulatoryInformation/ColorAdditiveListingRegulations/ColorAdditiveCertification/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_4_0_5=g_navNode_20_3_4_0.addNode('2378','Provisional Color Additives for Use in Foods, Drugs, \x26 Cosmetics',ssUrlPrefix + 'ForIndustry/ColorAdditives/GuidanceComplianceRegulatoryInformation/ColorAdditiveListingRegulations/ProvisionalColorAdditivesforUseinFoodsDrugsCosmetics/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_4_0_6=g_navNode_20_3_4_0.addNode('2379','Listing of Certified Provisionally Listed Colors \x26 Specifications',ssUrlPrefix + 'ForIndustry/ColorAdditives/GuidanceComplianceRegulatoryInformation/ColorAdditiveListingRegulations/ListingofCertifiedProvisionallyListedColorsSpecifications/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_5=g_navNode_20_3.addNode('2367','Science and Research',ssUrlPrefix + 'ForIndustry/ColorAdditives/ScienceandResearch/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_6=g_navNode_20_3.addNode('2368','Color Certification',ssUrlPrefix + 'ForIndustry/ColorAdditives/ColorCertification/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_6_0=g_navNode_20_3_6.addNode('2371','Companies Requesting Color Certification within the Last Two Years',ssUrlPrefix + 'ForIndustry/ColorAdditives/ColorCertification/CompaniesRequestingColorCertificationwithintheLastTwoYears/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_6_1=g_navNode_20_3_6.addNode('2372','Color Certification Reports',ssUrlPrefix + 'ForIndustry/ColorAdditives/ColorCertification/ColorCertificationReports/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_7=g_navNode_20_3.addNode('2369','Compliance \x26 Enforcement',ssUrlPrefix + 'ForIndustry/ColorAdditives/ComplianceEnforcement/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_3_7_0=g_navNode_20_3_7.addNode('2370','Color Additives Status List',ssUrlPrefix + 'ForIndustry/ColorAdditives/ComplianceEnforcement/ColorAdditivesStatusList/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ca','cspSectionEditorAlias==fdagov-edit-fi-ca_all','secondaryUrlVariableField==region1');
g_navNode_20_4=g_navNode_20.addNode('2301','Guidance Documents',ssUrlPrefix + 'ForIndustry/GuidanceDocuments/default.htm','cspSectionApproverAlias==fdagov-appr-fi-gd','secondaryUrlVariableField==region1');
g_navNode_20_5=g_navNode_20.addNode('2302','Adverse Event Reporting',ssUrlPrefix + 'ForIndustry/AdverseEventReporting/default.htm','cspSectionApproverAlias==fdagov-appr-fi-aer','secondaryUrlVariableField==region1');
g_navNode_20_6=g_navNode_20.addNode('2303','Developing Products for Rare Diseases \x26 Conditions',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd','secondaryUrlVariableField==region1');
g_navNode_20_6_0=g_navNode_20_6.addNode('3486','Overview',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/Overview/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-ov','cspSectionEditorAlias==fdagov-edit-fi-dprd-ov','secondaryUrlVariableField==region1');
g_navNode_20_6_1=g_navNode_20_6.addNode('2321','Frequently Asked Questions',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/FrequentlyAskedQuestions/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-faq','cspSectionEditorAlias==fdagov-edit-fi-dprd-','secondaryUrlVariableField==region1');
g_navNode_20_6_2=g_navNode_20_6.addNode('2322','Incentives',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/Incentives/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-inc','secondaryUrlVariableField==region1');
g_navNode_20_6_2_0=g_navNode_20_6_2.addNode('2333','Tax Credit for Testing Expenses',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/Incentives/TaxCreditforTestingExpenses/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-inc-tc','secondaryUrlVariableField==region1');
g_navNode_20_6_3=g_navNode_20_6.addNode('2323','How to apply for Orphan Product Designation',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/HowtoapplyforOrphanProductDesignation/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-opd','cspSectionEditorAlias==fdagov-edit-fi-dprd-opd','secondaryUrlVariableField==region1');
g_navNode_20_6_3_0=g_navNode_20_6_3.addNode('2329','Definition of Disease Prevalence',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/HowtoapplyforOrphanProductDesignation/DefinitionofDiseasePrevalence/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-opd-ddp','cspSectionEditorAlias==fdagov-edit-fi-dprd-opd-ddp','secondaryUrlVariableField==region1');
g_navNode_20_6_3_1=g_navNode_20_6_3.addNode('2330','Tips for Applying for Orphan Product Designation',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/HowtoapplyforOrphanProductDesignation/TipsforApplyingforOrphanProductDesignation/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-opd-ta','cspSectionEditorAlias==fdagov-edit-fi-dprd-opd-ta','secondaryUrlVariableField==region1');
g_navNode_20_6_3_2=g_navNode_20_6_3.addNode('2331','Lists of Orphan Product Designations and Approvals',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/HowtoapplyforOrphanProductDesignation/ListsofOrphanProductDesignationsandApprovals/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-opd-la','cspSectionEditorAlias==fdagov-edit-fi-dprd-opd-la','secondaryUrlVariableField==region1');
g_navNode_20_6_3_3=g_navNode_20_6_3.addNode('2332','Frequently Asked Questions \x28FAQ\x29',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/HowtoapplyforOrphanProductDesignation/FrequentlyAskedQuestionsFAQ/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-opd-faq','cspSectionEditorAlias==fdagov-edit-fi-dprd-opd-faq','secondaryUrlVariableField==region1');
g_navNode_20_6_4=g_navNode_20_6.addNode('2324','Designating Humanitarian Use Devices \x28HUDS\x29',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/DesignatingHumanitarianUseDevicesHUDS/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-huds','secondaryUrlVariableField==region1');
g_navNode_20_6_4_0=g_navNode_20_6_4.addNode('2327','Tips for preparing requests for Humanitarian Use Device \x28HUD\x29 designation',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/DesignatingHumanitarianUseDevicesHUDS/TipsforpreparingrequestsforHumanitarianUseDeviceHUDdesignation/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-huds-tfp','secondaryUrlVariableField==region1');
g_navNode_20_6_4_1=g_navNode_20_6_4.addNode('2328','Legislation Relating to HUDs / HDEs',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/DesignatingHumanitarianUseDevicesHUDS/LegislationRelatingtoHUDsHDEs/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-huds-lr','secondaryUrlVariableField==region1');
g_navNode_20_6_5=g_navNode_20_6.addNode('2325','Whom to Contact about Orphan Product Development',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/WhomtoContactaboutOrphanProductDevelopment/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-wcopd','cspSectionEditorAlias==fdagov-edit-fi-dprd-wcopd','secondaryUrlVariableField==region1');
g_navNode_20_6_6=g_navNode_20_6.addNode('2326','Other Sources of Rare Disease/Orphan Products Information',ssUrlPrefix + 'ForIndustry/DevelopingProductsforRareDiseasesConditions/OtherSourcesofRareDiseaseOrphanProductsInformation/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dprd-osrd','cspSectionEditorAlias==fdagov-edit-fi-dprd-osrd','secondaryUrlVariableField==region1');
g_navNode_20_7=g_navNode_20.addNode('2304','Data Standards',ssUrlPrefix + 'ForIndustry/DataStandards/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ds','secondaryUrlVariableField==region1');
g_navNode_20_7_0=g_navNode_20_7.addNode('2312','Data Council',ssUrlPrefix + 'ForIndustry/DataStandards/DataCouncil/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ds-dc','secondaryUrlVariableField==region1');
g_navNode_20_7_1=g_navNode_20_7.addNode('2313','Structured Product Labeling',ssUrlPrefix + 'ForIndustry/DataStandards/StructuredProductLabeling/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ds-spl','secondaryUrlVariableField==region1');
g_navNode_20_7_2=g_navNode_20_7.addNode('2314','Individual Case Safety Reports',ssUrlPrefix + 'ForIndustry/DataStandards/IndividualCaseSafetyReports/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ds-icsr','secondaryUrlVariableField==region1');
g_navNode_20_7_3=g_navNode_20_7.addNode('2315','Regulated Product Submission',ssUrlPrefix + 'ForIndustry/DataStandards/RegulatedProductSubmission/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ds-rps','secondaryUrlVariableField==region1');
g_navNode_20_7_4=g_navNode_20_7.addNode('2316','CDISC Data Standards',ssUrlPrefix + 'ForIndustry/DataStandards/CDISCDataStandards/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ds-cdisc','secondaryUrlVariableField==region1');
g_navNode_20_7_5=g_navNode_20_7.addNode('2317','Stability Data Standard',ssUrlPrefix + 'ForIndustry/DataStandards/StabilityDataStandard/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ds-sds','secondaryUrlVariableField==region1');
g_navNode_20_7_6=g_navNode_20_7.addNode('2318','Substance Registration System - Unique Ingredient Identifier \x28UNII\x29',ssUrlPrefix + 'ForIndustry/DataStandards/SubstanceRegistrationSystem-UniqueIngredientIdentifierUNII/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ds-unii','secondaryUrlVariableField==region1');
g_navNode_20_7_7=g_navNode_20_7.addNode('2319','XForms',ssUrlPrefix + 'ForIndustry/DataStandards/XForms/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ds-xf','secondaryUrlVariableField==region1');
g_navNode_20_8=g_navNode_20.addNode('2305','Dispute Resolution',ssUrlPrefix + 'ForIndustry/DisputeResolution/default.htm','cspSectionApproverAlias==fdagov-appr-fi-dr','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_20_9=g_navNode_20.addNode('2306','Advisory Committees',ssUrlPrefix + 'ForIndustry/AdvisoryCommittees/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ac','secondaryUrlVariableField==region1');
g_navNode_20_10=g_navNode_20.addNode('2307','Electronic Submissions Gateway',ssUrlPrefix + 'ForIndustry/ElectronicSubmissionsGateway/default.htm','cspSectionApproverAlias==fdagov-appr-fi-esg','secondaryUrlVariableField==region1');
g_navNode_20_11=g_navNode_20.addNode('2308','Industry Information By Topic',ssUrlPrefix + 'ForIndustry/IndustryInformationByTopic/default.htm','cspSectionApproverAlias==fdagov-appr-fi-iibt','secondaryUrlVariableField==region1');
g_navNode_20_12=g_navNode_20.addNode('2309','Vendor Payment Information',ssUrlPrefix + 'ForIndustry/VendorPaymentInformation/default.htm','cspSectionApproverAlias==fdagov-appr-fi-vpi','secondaryUrlVariableField==region1');
g_navNode_20_13=g_navNode_20.addNode('2310','En Espanol',ssUrlPrefix + 'ForIndustry/EnEspanol/default.htm','cspSectionApproverAlias==fdagov-appr-fi-ee','secondaryUrlVariableField==region1');
g_navNode_20_14=g_navNode_20.addNode('2311','Industry Information in Other Languages',ssUrlPrefix + 'ForIndustry/IndustryInformationinOtherLanguages/default.htm','cspSectionApproverAlias==fdagov-appr-fi-iiol','secondaryUrlVariableField==region1');
g_navNode_21=g_navNode_Root.addNode('1852','For Federal, State, and Local Officials',ssUrlPrefix + 'ForFederalStateandLocalOfficials/default.htm','cspSectionApproverAlias==fdagov-appr-fg, fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_21_0=g_navNode_21.addNode('2380','Cooperative Agreements \x28CRADAs\x29 \x26 Grants',ssUrlPrefix + 'ForFederalStateandLocalOfficials/CooperativeAgreementsCRADAsGrants/default.htm','cspSectionApproverAlias==fdagov-appr-fg-cag','secondaryUrlVariableField==region1');
g_navNode_21_1=g_navNode_21.addNode('2381','Partnerships \x26 Contracts',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc','secondaryUrlVariableField==region1');
g_navNode_21_1_0=g_navNode_21_1.addNode('2386','Overview',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/Overview/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-ov','secondaryUrlVariableField==region1');
g_navNode_21_1_1=g_navNode_21_1.addNode('2387','Current Partnership Agreements',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/CurrentPartnershipAgreements/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-cpa','secondaryUrlVariableField==region1');
g_navNode_21_1_1_0=g_navNode_21_1_1.addNode('2389','Association partnerships',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/CurrentPartnershipAgreements/Associationpartnerships/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-cpa-ap','secondaryUrlVariableField==region1');
g_navNode_21_1_1_1=g_navNode_21_1_1.addNode('2390','Northeast Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/CurrentPartnershipAgreements/NortheastRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-cpa-nr','secondaryUrlVariableField==region1');
g_navNode_21_1_1_2=g_navNode_21_1_1.addNode('2391','Southeast Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/CurrentPartnershipAgreements/SoutheastRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-cpa-ser','secondaryUrlVariableField==region1');
g_navNode_21_1_1_3=g_navNode_21_1_1.addNode('2392','Central Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/CurrentPartnershipAgreements/CentralRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-cpa-cr','secondaryUrlVariableField==region1');
g_navNode_21_1_1_4=g_navNode_21_1_1.addNode('2393','Southwest Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/CurrentPartnershipAgreements/SouthwestRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-cpa-swr','secondaryUrlVariableField==region1');
g_navNode_21_1_1_5=g_navNode_21_1_1.addNode('2394','Pacific Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/CurrentPartnershipAgreements/PacificRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-cpa-pr','secondaryUrlVariableField==region1');
g_navNode_21_1_2=g_navNode_21_1.addNode('2388','State Contracts',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc','secondaryUrlVariableField==region1');
g_navNode_21_1_2_0=g_navNode_21_1_2.addNode('2395','Overview',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/Overview/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-ov','secondaryUrlVariableField==region1');
g_navNode_21_1_2_1=g_navNode_21_1_2.addNode('2396','Current State Contracts',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/CurrentStateContracts/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-cur','secondaryUrlVariableField==region1');
g_navNode_21_1_2_1_0=g_navNode_21_1_2_1.addNode('2398','Northeast Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/CurrentStateContracts/NortheastRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-cur-nr','secondaryUrlVariableField==region1');
g_navNode_21_1_2_1_1=g_navNode_21_1_2_1.addNode('2400','Southeast Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/CurrentStateContracts/SoutheastRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-cur-ser','secondaryUrlVariableField==region1');
g_navNode_21_1_2_1_2=g_navNode_21_1_2_1.addNode('2402','Central Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/CurrentStateContracts/CentralRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-cur-cr','secondaryUrlVariableField==region1');
g_navNode_21_1_2_1_3=g_navNode_21_1_2_1.addNode('2404','Southwest Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/CurrentStateContracts/SouthwestRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-cur-swr','secondaryUrlVariableField==region1');
g_navNode_21_1_2_1_4=g_navNode_21_1_2_1.addNode('2406','Pacific Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/CurrentStateContracts/PacificRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-cur-pr','secondaryUrlVariableField==region1');
g_navNode_21_1_2_2=g_navNode_21_1_2.addNode('2397','Audit Reports on State Food Contract Inspections',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/AuditReportsonStateFoodContractInspections/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-ar','secondaryUrlVariableField==region1');
g_navNode_21_1_2_2_0=g_navNode_21_1_2_2.addNode('2399','Northeast Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/AuditReportsonStateFoodContractInspections/NortheastRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-ar-NR','secondaryUrlVariableField==region1');
g_navNode_21_1_2_2_1=g_navNode_21_1_2_2.addNode('2401','Southeast Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/AuditReportsonStateFoodContractInspections/SoutheastRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-ar-ser','secondaryUrlVariableField==region1');
g_navNode_21_1_2_2_2=g_navNode_21_1_2_2.addNode('2403','Central Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/AuditReportsonStateFoodContractInspections/CentralRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-ar-cr','secondaryUrlVariableField==region1');
g_navNode_21_1_2_2_3=g_navNode_21_1_2_2.addNode('2405','Southwest Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/AuditReportsonStateFoodContractInspections/SouthwestRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-ar-swr','secondaryUrlVariableField==region1');
g_navNode_21_1_2_2_4=g_navNode_21_1_2_2.addNode('2407','Pacific Region',ssUrlPrefix + 'ForFederalStateandLocalOfficials/PartnershipsContracts/StateContracts/AuditReportsonStateFoodContractInspections/PacificRegion/default.htm','cspSectionApproverAlias==fdagov-appr-fg-pc-sc-ar-pr','secondaryUrlVariableField==region1');
g_navNode_21_2=g_navNode_21.addNode('2382','State Action Information Newsletter \x28SAIL\x29',ssUrlPrefix + 'ForFederalStateandLocalOfficials/StateActionInformationNewsletterSAIL/default.htm','cspSectionApproverAlias==fdagov-appr-fg-sail','secondaryUrlVariableField==region1');
g_navNode_21_3=g_navNode_21.addNode('2383','Food Safety System',ssUrlPrefix + 'ForFederalStateandLocalOfficials/FoodSafetySystem/default.htm','cspSectionApproverAlias==fdagov-appr-fg-sfs','secondaryUrlVariableField==region1');
g_navNode_21_3_0=g_navNode_21_3.addNode('3487','National Food Safety System Project',ssUrlPrefix + 'ForFederalStateandLocalOfficials/FoodSafetySystem/NationalFoodSafetySystemProject/default.htm','cspSectionApproverAlias==fdagov-appr-fg-sfs-nfssp','secondaryUrlVariableField==region1');
g_navNode_21_3_1=g_navNode_21_3.addNode('3488','Retail Food Programs Operations and Support',ssUrlPrefix + 'ForFederalStateandLocalOfficials/FoodSafetySystem/RetailFoodProgramsOperationsandSupport/default.htm','cspSectionApproverAlias==fdagov-appr-fg-sfs-rfpos','secondaryUrlVariableField==region1');
g_navNode_21_4=g_navNode_21.addNode('2384','Contact Us',ssUrlPrefix + 'ForFederalStateandLocalOfficials/ContactUs/default.htm','cspSectionApproverAlias==fdagov-appr-fg-cu','secondaryUrlVariableField==region1');
g_navNode_21_4_0=g_navNode_21_4.addNode('2385','Communications Between FDA and State \x26 Local Officials',ssUrlPrefix + 'ForFederalStateandLocalOfficials/ContactUs/CommunicationsBetweenFDAandStateLocalOfficials/default.htm','cspSectionApproverAlias==fdagov-appr-fg-cu-comm','secondaryUrlVariableField==region1');
g_navNode_21_5=g_navNode_21.addNode('3489','Meetings',ssUrlPrefix + 'ForFederalStateandLocalOfficials/Meetings/default.htm','cspSectionApproverAlias==fdagov-appr-fg-meet','cspVisualTopicBreak==True','secondaryUrlVariableField==region1');
g_navNode_21_5_0=g_navNode_21_5.addNode('3490','50-State Meeting',ssUrlPrefix + 'ForFederalStateandLocalOfficials/Meetings/50-StateMeeting/default.htm','cspSectionApproverAlias==fdagov-appr-fg-meet-50s','secondaryUrlVariableField==region1');
g_navNode_21_5_1=g_navNode_21_5.addNode('3491','Conferences',ssUrlPrefix + 'ForFederalStateandLocalOfficials/Meetings/Conferences/default.htm','cspSectionApproverAlias==fdagov-appr-fg-meet-con','secondaryUrlVariableField==region1');
g_navNode_21_5_2=g_navNode_21_5.addNode('3492','State and National Meetings',ssUrlPrefix + 'ForFederalStateandLocalOfficials/Meetings/StateandNationalMeetings/default.htm','cspSectionApproverAlias==fdagov-appr-fg-meet-sn','secondaryUrlVariableField==region1');
g_navNode_21_6=g_navNode_21.addNode('3493','Manufactured Food Regulatory Program Standards',ssUrlPrefix + 'ForFederalStateandLocalOfficials/ManufacturedFoodRegulatoryProgramStandards/default.htm','cspSectionApproverAlias==fdagov-appr-fg-mfrps','secondaryUrlVariableField==region1');
g_navNode_21_7=g_navNode_21.addNode('3494','Electronic State Access to FACTS \x28eSAF\x29',ssUrlPrefix + 'ForFederalStateandLocalOfficials/ElectronicStateAccesstoFACTSeSAF/default.htm','cspSectionApproverAlias==fdagov-appr-fg-esaf','secondaryUrlVariableField==region1');
g_navNode_21_8=g_navNode_21.addNode('3495','Health Fraud Task Force',ssUrlPrefix + 'ForFederalStateandLocalOfficials/HealthFraudTaskForce/default.htm','cspSectionApproverAlias==fdagov-appr-fg-hftf','secondaryUrlVariableField==region1');
g_navNode_21_9=g_navNode_21.addNode('3496','Communication between FDA, State, Local and Tribal Officials',ssUrlPrefix + 'ForFederalStateandLocalOfficials/CommunicationbetweenFDAStateLocalandTribalOfficials/default.htm','cspSectionApproverAlias==fdagov-appr-fg-comm','secondaryUrlVariableField==region1');
g_navNode_21_9_0=g_navNode_21_9.addNode('3497','Commissioning',ssUrlPrefix + 'ForFederalStateandLocalOfficials/CommunicationbetweenFDAStateLocalandTribalOfficials/Commissioning/default.htm','cspSectionApproverAlias==fdagov-appr-fg-comm-coms','secondaryUrlVariableField==region1');
g_navNode_21_9_1=g_navNode_21_9.addNode('3498','Communication Systems',ssUrlPrefix + 'ForFederalStateandLocalOfficials/CommunicationbetweenFDAStateLocalandTribalOfficials/CommunicationSystems/default.htm','cspSectionApproverAlias==fdagov-appr-fg-comm-cs','secondaryUrlVariableField==region1');
g_navNode_21_9_2=g_navNode_21_9.addNode('3499','State and Local Inquiries',ssUrlPrefix + 'ForFederalStateandLocalOfficials/CommunicationbetweenFDAStateLocalandTribalOfficials/StateandLocalInquiries/default.htm','cspSectionApproverAlias==fdagov-appr-fg-comm-sli','secondaryUrlVariableField==region1');
g_navNode_21_9_3=g_navNode_21_9.addNode('3500','State/Local Input on Rulemaking',ssUrlPrefix + 'ForFederalStateandLocalOfficials/CommunicationbetweenFDAStateLocalandTribalOfficials/StateLocalInputonRulemaking/default.htm','cspSectionApproverAlias==fdagov-appr-fg-comm-slr','secondaryUrlVariableField==region1');
g_navNode_22=g_navNode_Root.addNode('1853','For Health Professionals',ssUrlPrefix + 'ForHealthProfessionals/default.htm','cspSectionApproverAlias==fdagov-appr-fhp, fdagov-appr-cder-webteam, fdagov-appr-oerwebteam','secondaryUrlVariableField==region1');
g_navNode_22_0=g_navNode_22.addNode('2408','Patient Safety News',ssUrlPrefix + 'ForHealthProfessionals/PatientSafetyNews/default.htm','cspSectionApproverAlias==fdagov-appr-fhp-psn','secondaryUrlVariableField==region1');
