/////////////////////////////////////////////////////////////////////////////
// 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('hr_home','Home',ssUrlPrefix + 'index.htm',null,'secondaryUrlVariableField==region1');
g_navNode_0=g_navNode_Root.addNode('careers','Careers at Carolina',ssUrlPrefix + 'careers-at-carolina/index.htm','InMainNav==TRUE','secondaryUrlVariableField==region1');
g_navNode_0_0=g_navNode_0.addNode('open-positions','Open Positions',ssUrlPrefix + 'careers-at-carolina/open-positions/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_0_0=g_navNode_0_0.addNode('epanf-appproc','EPA Non-Faculty Application Procedures \x28Permanent Positions\x29',ssUrlPrefix + 'careers-at-carolina/open-positions/epanf-appproc/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_0_1=g_navNode_0_0.addNode('fac-appproc','Faculty Application Procedures',ssUrlPrefix + 'careers-at-carolina/open-positions/fac-appproc/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_0_2=g_navNode_0_0.addNode('SPA-appproc','SPA Application Procedures \x28Permanent Positions\x29',ssUrlPrefix + 'careers-at-carolina/open-positions/SPA-appproc/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_0_3=g_navNode_0_0.addNode('temp-appproc','Temporary Position Application Procedures',ssUrlPrefix + 'careers-at-carolina/open-positions/temp-appproc/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1=g_navNode_0.addNode('working-at-carolina','Working at Carolina',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_0=g_navNode_0_1.addNode('benefits-of-working-at-unc','Benefits of Working at Carolina',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/benefits-of-working-at-carolina/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_0_0=g_navNode_0_1_0.addNode('benefits-discounts-perks','Benefits, Discounts and Perks',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/benefits-of-working-at-carolina/benefits-discounts-perks/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_0_1=g_navNode_0_1_0.addNode('professional-development','Professional Learning and Development',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/benefits-of-working-at-carolina/professional-development/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_0_2=g_navNode_0_1_0.addNode('work-life-resources','Work/Life Resources',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/benefits-of-working-at-carolina/work-life-resources/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_1=g_navNode_0_1.addNode('applicant-info','Applicant Information',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/applicant-info/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_2=g_navNode_0_1.addNode('job-categories','Job Categories',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/job-categories/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_3=g_navNode_0_1.addNode('connect-with-recruiters','Connect with Recruiters',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/connect-with-recruiters/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_4=g_navNode_0_1.addNode('about-the-university','Information about the University',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/about-the-university/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_4_0=g_navNode_0_1_4.addNode('mission','Mission',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/about-the-university/mission/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_4_1=g_navNode_0_1_4.addNode('campus-history','Campus History',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/about-the-university/campus-history/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_4_2=g_navNode_0_1_4.addNode('people','People',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/about-the-university/people/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_4_3=g_navNode_0_1_4.addNode('security','Campus Security',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/about-the-university/security/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_4_5=g_navNode_0_1_4.addNode('campus-map','Campus Map, Parking and Transportation',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/about-the-university/campus-map/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_5=g_navNode_0_1.addNode('about-the-area','Information about the Area',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/about-the-area/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_1_6=g_navNode_0_1.addNode('relocation-assistance','Relocation Assistance',ssUrlPrefix + 'careers-at-carolina/working-at-carolina/relocation-assistance/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_2=g_navNode_0.addNode('new-employee','New Employee Orientation',ssUrlPrefix + 'careers-at-carolina/orientation/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_3=g_navNode_0.addNode('temp-employment','Temporary Employment',ssUrlPrefix + 'careers-at-carolina/temporary-employment/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_3_0=g_navNode_0_3.addNode('uts','University Targeted Staffing',ssUrlPrefix + 'careers-at-carolina/temporary-employment/uts/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_3_0_0=g_navNode_0_3_0.addNode('uts-hiring','UTS Information for Hiring Departments',ssUrlPrefix + 'careers-at-carolina/temporary-employment/uts/uts-hiring/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_3_1=g_navNode_0_3.addNode('direct-hire-temporaries','Direct-Hire Temporaries',ssUrlPrefix + 'careers-at-carolina/temporary-employment/direct-hire-temporaries/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_4=g_navNode_0.addNode('hiring-mngr','Hiring Manager Information',ssUrlPrefix + 'careers-at-carolina/hiring-manager-info/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_4_0=g_navNode_0_4.addNode('recruitment-advertising','Recruitment Advertising',ssUrlPrefix + 'careers-at-carolina/hiring-manager-info/recruitment-advertising/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_4_1=g_navNode_0_4.addNode('diversity-equal-employment','Diversity and Equal Employment Opportunity',ssUrlPrefix + 'careers-at-carolina/hiring-manager-info/diversity-equal-employment/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_4_2=g_navNode_0_4.addNode('hiring-officer-info-center','Hiring Manager Information Center',ssUrlPrefix + 'careers-at-carolina/hiring-manager-info/hiring-officer-info-center/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_4_3=g_navNode_0_4.addNode('orientation-checklists','Orientation Checklists',ssUrlPrefix + 'careers-at-carolina/hiring-manager-info/orientation-checklists/index.htm','secondaryUrlVariableField==region1');
g_navNode_1=g_navNode_Root.addNode('benefits','Benefits',ssUrlPrefix + 'benefits/index.htm','InMainNav==TRUE','secondaryUrlVariableField==region1');
g_navNode_1_0=g_navNode_1.addNode('benefit-plans','Benefit Plans',ssUrlPrefix + 'benefits/benefit-plans/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_0=g_navNode_1_0.addNode('health-insurance','Health Insurance',ssUrlPrefix + 'benefits/benefit-plans/health-insurance/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_1=g_navNode_1_0.addNode('dental-insurance','Dental Insurance',ssUrlPrefix + 'benefits/benefit-plans/dental-insurance/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_2=g_navNode_1_0.addNode('vision-insurance','Vision Insurance',ssUrlPrefix + 'benefits/benefit-plans/vision-insurance/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_3=g_navNode_1_0.addNode('cancer-insurance','Cancer Insurance',ssUrlPrefix + 'benefits/benefit-plans/cancer-insurance/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_4=g_navNode_1_0.addNode('critical-illness','Critical Illness',ssUrlPrefix + 'benefits/benefit-plans/critical-illness/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_5=g_navNode_1_0.addNode('group-life','Group Life Insurance',ssUrlPrefix + 'benefits/benefit-plans/group-life/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_6=g_navNode_1_0.addNode('home-and-auto','Home and Auto Insurance',ssUrlPrefix + 'benefits/benefit-plans/home-and-auto/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_7=g_navNode_1_0.addNode('liability-insurance','Liability Insurance',ssUrlPrefix + 'benefits/benefit-plans/liability-insurance/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_8=g_navNode_1_0.addNode('long-term-care','Long Term Care Insurance',ssUrlPrefix + 'benefits/benefit-plans/long-term-care/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_9=g_navNode_1_0.addNode('disability-workers-comp','Disability and Workers\' Compensation',ssUrlPrefix + 'benefits/benefit-plans/disability-workers-compensation/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_10=g_navNode_1_0.addNode('accidental-death','Accidental Death and Dismemberment',ssUrlPrefix + 'benefits/benefit-plans/accidental-death/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_11=g_navNode_1_0.addNode('flexible-spending-accounts','Flexible Spending Accounts',ssUrlPrefix + 'benefits/benefit-plans/flexible-spending-accounts/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_0_12=g_navNode_1_0.addNode('retirement-programs','Retirement Programs',ssUrlPrefix + 'benefits/benefit-plans/retirement-programs/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Program\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6034\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e  \x60, 34\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Program\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6034, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Program\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 34, \x60','secondaryUrlVariableField==region1');
g_navNode_1_1=g_navNode_1.addNode('benefits-eligibility','Benefits Eligibility',ssUrlPrefix + 'benefits/benefits-eligibility/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_2=g_navNode_1.addNode('benefits-enrollment','Benefits Enrollment',ssUrlPrefix + 'benefits/benefits-enrollment/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_3=g_navNode_1.addNode('leave-and-holidays','Leave and Holidays',ssUrlPrefix + 'benefits/leave-and-holidays/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6035\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 35\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6035, \x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 35, \x60','secondaryUrlVariableField==region1');
g_navNode_1_4=g_navNode_1.addNode('work-life-and-wellness','Work-Life Programs',ssUrlPrefix + 'benefits/work-life-and-wellness/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_4_0=g_navNode_1_4.addNode('child-care-programs','Child Care Programs',ssUrlPrefix + 'benefits/work-life-and-wellness/child-care-programs/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6056\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 56\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6056, \x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 56, \x60','secondaryUrlVariableField==region1');
g_navNode_1_4_1=g_navNode_1_4.addNode('educational-programs','Educational Programs',ssUrlPrefix + 'benefits/work-life-and-wellness/educational-programs/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat2 \x3cmatches\x3e \x6090\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 90\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x6090, \x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 90, \x60','secondaryUrlVariableField==region1');
g_navNode_1_4_2=g_navNode_1_4.addNode('elder-care-programs','Elder Care Programs',ssUrlPrefix + 'benefits/work-life-and-wellness/elder-care-programs/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6057\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 57\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6057, \x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 57, \x60','secondaryUrlVariableField==region1');
g_navNode_1_4_3=g_navNode_1_4.addNode('emergency-loan-program','Emergency Loan Program',ssUrlPrefix + 'benefits/work-life-and-wellness/emergency-loan-program/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat2 \x3cmatches\x3e \x6092\x60  \x3cOR\x3e  \\x0adDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 92\x60  \x3cOR\x3e  \\x0adDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x6092, \x60  \x3cOR\x3e  \\x0adDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 92, \x60','secondaryUrlVariableField==region1');
g_navNode_1_4_4=g_navNode_1_4.addNode('employee-assistance','Employee Assistance Program',ssUrlPrefix + 'benefits/work-life-and-wellness/employee-assistance/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_4_5=g_navNode_1_4.addNode('flexible-work','Flexible Work Arrangements',ssUrlPrefix + 'benefits/work-life-and-wellness/flexible-work/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_4_6=g_navNode_1_4.addNode('parenting','Parenting Programs',ssUrlPrefix + 'benefits/work-life-and-wellness/parenting/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6062\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 62\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6062, \x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 62, \x60','secondaryUrlVariableField==region1');
g_navNode_1_4_7=g_navNode_1_4.addNode('rewards-and-recognition','Rewards and Recognition',ssUrlPrefix + 'benefits/work-life-and-wellness/rewards-and-recognition/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat2 \x3cmatches\x3e \x6091\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 91\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x6091, \x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Program\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 91, \x60','secondaryUrlVariableField==region1');
g_navNode_1_5=g_navNode_1.addNode('wellness','Wellness Programs',ssUrlPrefix + 'benefits/wellness/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_5_5=g_navNode_1_5.addNode('100530','Work Well, Live Well Challenge',ssUrlPrefix + 'benefits/wellness/challenge/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_5_5_0=g_navNode_1_5_5.addNode('mind-challenge','Wellness Challenge\x3a Mind',ssUrlPrefix + 'benefits/wellness/challenge/mind-challenge/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_5_5_1=g_navNode_1_5_5.addNode('body-challenge','Wellness Challenge\x3a Body',ssUrlPrefix + 'benefits/wellness/challenge/body-challenge/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_5_5_2=g_navNode_1_5_5.addNode('balance-challenge','Wellness Challenge\x3a Balance',ssUrlPrefix + 'benefits/wellness/challenge/balance-challenge/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_5_5_3=g_navNode_1_5_5.addNode('comm-challenge','Wellness Challenge\x3a Community',ssUrlPrefix + 'benefits/wellness/challenge/comm-challenge/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_6=g_navNode_1.addNode('discounts-and-perks','Tar Heel Discounts and Perks',ssUrlPrefix + 'benefits/discounts-and-perks/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_6_0=g_navNode_1_6.addNode('arts-entertainment','Arts and Entertainment',ssUrlPrefix + 'benefits/discounts-and-perks/arts-entertainment/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_6_1=g_navNode_1_6.addNode('campus-resources','Campus Resources',ssUrlPrefix + 'benefits/discounts-and-perks/campus-resources/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_6_2=g_navNode_1_6.addNode('employee-discounts','Employee Discounts',ssUrlPrefix + 'benefits/discounts-and-perks/employee-discounts/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_6_3=g_navNode_1_6.addNode('leisure-recreation','Leisure and Recreation',ssUrlPrefix + 'benefits/discounts-and-perks/leisure-recreation/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_7=g_navNode_1.addNode('life-events','Life Events',ssUrlPrefix + 'benefits/life-events/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_7_0=g_navNode_1_7.addNode('beneficiaries','Beneficiary Designations',ssUrlPrefix + 'benefits/life-events/beneficiaries/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_7_1=g_navNode_1_7.addNode('birth-adopt','Birth or Adoption',ssUrlPrefix + 'benefits/life-events/birthadoption/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_7_2=g_navNode_1_7.addNode('dep-death','Death of a Dependent',ssUrlPrefix + 'benefits/life-events/dep-death/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_7_3=g_navNode_1_7.addNode('employ-chg','Employment Status Change',ssUrlPrefix + 'benefits/life-events/employchg/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_7_4=g_navNode_1_7.addNode('inelig-dep','Ineligible Dependent',ssUrlPrefix + 'benefits/life-events/inelig-dep/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_7_5=g_navNode_1_7.addNode('leaving','Leaving the University',ssUrlPrefix + 'benefits/life-events/leaving/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_7_6=g_navNode_1_7.addNode('marital-chg','Marital Status Change',ssUrlPrefix + 'benefits/life-events/marital-chg/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_7_7=g_navNode_1_7.addNode('name-address','Name or Address Change',ssUrlPrefix + 'benefits/life-events/name-add-chg/index.htm','secondaryUrlVariableField==region1');
g_navNode_1_7_8=g_navNode_1_7.addNode('retire','Retirement',ssUrlPrefix + 'benefits/life-events/retirement/index.htm','secondaryUrlVariableField==region1');
g_navNode_2=g_navNode_Root.addNode('policies','Policies, Procedures \x26 Systems',ssUrlPrefix + 'policies-procedures-guidelines/index.htm','InMainNav==TRUE','secondaryUrlVariableField==region1');
g_navNode_2_0=g_navNode_2.addNode('spa-employee-policies','SPA Employee Policies',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/index.htm','secondaryUrlVariableField==region1');
g_navNode_2_0_0=g_navNode_2_0.addNode('compensation-policies','Compensation',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/compensation-policies/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6041\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 41\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6041, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 41, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60','secondaryUrlVariableField==region1','target==compensation-policies');
g_navNode_2_0_1=g_navNode_2_0.addNode('educational-assistance-pol','Educational Assistance',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/educational-assistance/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat2 \x3cmatches\x3e \x6090\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 90\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x6090, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 90, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60','secondaryUrlVariableField==region1');
g_navNode_2_0_2=g_navNode_2_0.addNode('employee-relations','Employee Relations',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/employee-relations/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6058\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 58\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6058, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 58, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60','secondaryUrlVariableField==region1');
g_navNode_2_0_3=g_navNode_2_0.addNode('employment','Employment',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/employment/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6063\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 63\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6063, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 63, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60','secondaryUrlVariableField==region1');
g_navNode_2_0_4=g_navNode_2_0.addNode('leave-and-holidays-pol','Leave and Holidays',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/leave-and-holidays/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6035\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6035, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 35\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 35, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60','secondaryUrlVariableField==region1');
g_navNode_2_0_5=g_navNode_2_0.addNode('performance-mgmt-pol','Performance Management',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/performance-management/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6047\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6047, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 47\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 47, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60','secondaryUrlVariableField==region1');
g_navNode_2_0_6=g_navNode_2_0.addNode('personnel-information-pol','Personnel Information',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/personnel-information/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6044\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6044, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 44\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 44, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60','secondaryUrlVariableField==region1');
g_navNode_2_0_7=g_navNode_2_0.addNode('recruitment-and-selection','Recruitment and Selection',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/recruitment-and-selection/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6039\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 39\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6039, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 39, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60','secondaryUrlVariableField==region1');
g_navNode_2_0_8=g_navNode_2_0.addNode('separation','Separation',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/separation/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6064\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 64\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6064, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 64, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60','secondaryUrlVariableField==region1');
g_navNode_2_0_9=g_navNode_2_0.addNode('temporary-staffing-pol','Temporary Employment',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/temporary-staffing/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6048\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6048, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 48\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 48, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60','secondaryUrlVariableField==region1');
g_navNode_2_0_10=g_navNode_2_0.addNode('wage-hour-policies','Wage-Hour',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/wage-hour-policies/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6040\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6040, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 40\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 40, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60','secondaryUrlVariableField==region1');
g_navNode_2_0_11=g_navNode_2_0.addNode('spa-work-life-wellness','Work/Life and Wellness',ssUrlPrefix + 'policies-procedures-guidelines/spa-employee-policies/work-life-wellness/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6036\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6036, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 36\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 36, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60SPA\x60','secondaryUrlVariableField==region1');
g_navNode_2_1=g_navNode_2.addNode('epa-non-faculty-policies','EPA Non-Faculty Employee Policies',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6043\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 43\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6043, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 43, \x60','secondaryUrlVariableField==region1');
g_navNode_2_1_0=g_navNode_2_1.addNode('terms-and-conditions','Terms and Conditions of Employment',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/terms-and-conditions/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3cmatches\x3e \x6094\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x6094, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 94\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 94, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60','secondaryUrlVariableField==region1');
g_navNode_2_1_1=g_navNode_2_1.addNode('epa-nf-appointment','Appointment and End of Appointment',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/epa-nf-appointment/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3cmatches\x3e \x6095\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x6095, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 95\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 95, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60','secondaryUrlVariableField==region1');
g_navNode_2_1_2=g_navNode_2_1.addNode('epa-nf-compensation','Compensation and Pay',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/epa-nf-compensation/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6041\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6041, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 41\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 41, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60','secondaryUrlVariableField==region1');
g_navNode_2_1_3=g_navNode_2_1.addNode('epa-nf-conduct','Conduct and Conflicts of Interest',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/epa-nf-conduct/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6052\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6052, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 52\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 52, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60','secondaryUrlVariableField==region1');
g_navNode_2_1_4=g_navNode_2_1.addNode('epa-nf-grievance','Dispute Resolution and Grievance',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/epa-nf-grievance/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6046\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6046, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 46\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 46, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6061\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6061, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 61\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 61, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60','secondaryUrlVariableField==region1');
g_navNode_2_1_5=g_navNode_2_1.addNode('epa-student-policies','EPA Student Policies and Guidelines',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/student-policies-guidelines/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3cmatches\x3e \x60101\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60101, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 101\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 101, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Guideline\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3cmatches\x3e \x60101\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Guideline\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60101, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Guideline\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 101\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Guideline\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 101, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60','secondaryUrlVariableField==region1');
g_navNode_2_1_6=g_navNode_2_1.addNode('epa-nf-health','Health and Safety',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/epa-nf-health/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6051\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6051, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 51\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 51, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60','secondaryUrlVariableField==region1');
g_navNode_2_1_7=g_navNode_2_1.addNode('epa-nf-leave','Leave',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/epa-nf-leave/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6035\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6035, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 35\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 35, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60','secondaryUrlVariableField==region1');
g_navNode_2_1_8=g_navNode_2_1.addNode('epa-nf-classification','Position Classification and Maintenance',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/epa-nf-classification/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3cmatches\x3e \x6096\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x6096, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 96\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 96, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60','secondaryUrlVariableField==region1');
g_navNode_2_1_9=g_navNode_2_1.addNode('epa-nf-records','Recordkeeping and EPAWeb Personnel Action System',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/epa-nf-records/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3cmatches\x3e \x60100\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60100, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 100\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat2 \x3csubstring\x3e \x60, 100, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60','secondaryUrlVariableField==region1');
g_navNode_2_1_10=g_navNode_2_1.addNode('epa-nf-performance','Review and Performance Management',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/epa-nf-performance/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6047\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6047, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 47\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 47, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60','secondaryUrlVariableField==region1');
g_navNode_2_1_11=g_navNode_2_1.addNode('retiree-resources','Retiree Resources',ssUrlPrefix + 'policies-procedures-guidelines/epa-non-faculty-policies/retiree-resources/index.htm','dynListOne==dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3cmatches\x3e \x6034\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x6034, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 34\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60  \x3cOR\x3e  dDocType \x3cmatches\x3e \x60Policy\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60ohr\x60  \x3cAND\x3e  xCat1 \x3csubstring\x3e \x60, 34, \x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60EPA Non-Faculty\x60','secondaryUrlVariableField==region1');
g_navNode_2_2=g_navNode_2.addNode('faculty-policies','Faculty Employee Policies',ssUrlPrefix + 'policies-procedures-guidelines/faculty-policies/index.htm');
g_navNode_2_3=g_navNode_2.addNode('postdoctoral-policies','Postdoctoral Policies',ssUrlPrefix + 'policies-procedures-guidelines/postdoctoral-policies/index.htm');
g_navNode_2_4=g_navNode_2.addNode('campus-policies','Campus Policies',ssUrlPrefix + 'policies-procedures-guidelines/campus-policies/index.htm');
g_navNode_2_5=g_navNode_2.addNode('employee-records','Employee Records',ssUrlPrefix + 'policies-procedures-guidelines/employee-records/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6044\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 44\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6044, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 44, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60','secondaryUrlVariableField==region1');
g_navNode_2_6=g_navNode_2.addNode('hr-systems-tech-sppt','HR Systems Technical Support',ssUrlPrefix + 'policies-procedures-guidelines/hr-systems-tech-sppt/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6045\x60  \x3cAND\x3e xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 45\x60  \x3cAND\x3e xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6045, \x60  \x3cAND\x3e xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 45, \x60  \x3cAND\x3e xWebsites  \x3ccontains\x3e  \x60ohr\x60','secondaryUrlVariableField==region1');
g_navNode_2_6_0=g_navNode_2_6.addNode('hr-applications','HR Applications',ssUrlPrefix + 'policies-procedures-guidelines/hr-systems-tech-sppt/hr-applications/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6045\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 45\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6045, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 45, \x60','secondaryUrlVariableField==region1');
g_navNode_2_6_1=g_navNode_2_6.addNode('hr-applications-access','HR Applications Access',ssUrlPrefix + 'policies-procedures-guidelines/hr-systems-tech-sppt/hr-applications-access/index.htm');
g_navNode_2_6_2=g_navNode_2_6.addNode('hr-apps-user-guides','HR Applications User Guides',ssUrlPrefix + 'policies-procedures-guidelines/hr-systems-tech-sppt/hr-apps-user-guides/index.htm','secondaryUrlVariableField==region1');
g_navNode_2_6_3=g_navNode_2_6.addNode('systems-training','Systems Training',ssUrlPrefix + 'policies-procedures-guidelines/hr-systems-tech-sppt/systems-training/index.htm','secondaryUrlVariableField==region1');
g_navNode_2_6_4=g_navNode_2_6.addNode('technical-support','Technical Support',ssUrlPrefix + 'policies-procedures-guidelines/hr-systems-tech-sppt/technical-support/index.htm');
g_navNode_2_6_5=g_navNode_2_6.addNode('special-report-requests','Special Report Requests',ssUrlPrefix + 'policies-procedures-guidelines/hr-systems-tech-sppt/special-report-requests/index.htm','secondaryUrlVariableField==region1');
g_navNode_2_6_6=g_navNode_2_6.addNode('contacts','Contacts',ssUrlPrefix + 'policies-procedures-guidelines/hr-systems-tech-sppt/Contacts/index.htm','secondaryUrlVariableField==region1');
g_navNode_2_7=g_navNode_2.addNode('connect-carolina','ConnectCarolina HR/Payroll Project',ssUrlPrefix + 'policies-procedures-guidelines/connect-carolina/index.htm','secondaryUrlVariableField==region1');
g_navNode_3=g_navNode_Root.addNode('forms','Form Finder',ssUrlPrefix + 'form-finder/index.htm','InMainNav==TRUE','secondaryUrlVariableField==region1');
g_navNode_3_0=g_navNode_3.addNode('benefits-forms','Benefits Forms',ssUrlPrefix + 'form-finder/benefits-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6032\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 32\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6032, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 32, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60','dynListThree==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6033\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 33\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6033, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 33, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60','dynListTwo==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6034\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 34\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6034, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 34, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60','secondaryUrlVariableField==region1');
g_navNode_3_1=g_navNode_3.addNode('career-banding-forms','Career Banding Forms',ssUrlPrefix + 'form-finder/career-banding-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6042\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 42\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6042, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 42, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60','secondaryUrlVariableField==region1');
g_navNode_3_2=g_navNode_3.addNode('discount-forms','Discount Forms',ssUrlPrefix + 'form-finder/discount-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6037\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 37\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6037, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 37, \x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60ohr\x60','secondaryUrlVariableField==region1');
g_navNode_3_3=g_navNode_3.addNode('employee-records-forms','Employee Records Forms',ssUrlPrefix + 'form-finder/employee-records-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6044\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 44\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6044, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 44, \x60','secondaryUrlVariableField==region1');
g_navNode_3_4=g_navNode_3.addNode('employment-forms','Employment Forms',ssUrlPrefix + 'form-finder/employment-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6063\x60  \x3cAND\x3e xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 63\x60  \x3cAND\x3e xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6063, \x60  \x3cAND\x3e xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 63, \x60  \x3cAND\x3e xWebsites  \x3ccontains\x3e  \x60ohr\x60','secondaryUrlVariableField==region1');
g_navNode_3_5=g_navNode_3.addNode('epa-forms','EPA Non-Faculty Forms',ssUrlPrefix + 'form-finder/epa-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6043\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 43\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6043, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 43, \x60','secondaryUrlVariableField==region1');
g_navNode_3_6=g_navNode_3.addNode('fac-forms-link','Faculty-Related Forms',ssUrlPrefix + 'form-finder/fac-forms-link/index.htm','secondaryUrlVariableField==region1');
g_navNode_3_7=g_navNode_3.addNode('grievance-mediation','Grievance, Mediation and Harassment Forms',ssUrlPrefix + 'form-finder/grievance-mediation-harassment/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6046\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 46\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6046, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 46, \x60','secondaryUrlVariableField==region1');
g_navNode_3_8=g_navNode_3.addNode('hr-systems-forms','HR Systems Technical Support Forms',ssUrlPrefix + 'form-finder/hr-systems-tech-sppt-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6045\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 45\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6045, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 45, \x60','secondaryUrlVariableField==region1');
g_navNode_3_9=g_navNode_3.addNode('leave-forms','Leave Forms',ssUrlPrefix + 'form-finder/leave-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6035\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 35\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6035, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 35, \x60','secondaryUrlVariableField==region1');
g_navNode_3_10=g_navNode_3.addNode('payroll-forms','Payroll Forms',ssUrlPrefix + 'form-finder/payroll-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6041\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 41\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6041, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 41, \x60','secondaryUrlVariableField==region1');
g_navNode_3_11=g_navNode_3.addNode('performance-mgmt-forms','Performance Management Forms',ssUrlPrefix + 'form-finder/performance-mgmt-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6047\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 47\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6047, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 47, \x60','secondaryUrlVariableField==region1');
g_navNode_3_12=g_navNode_3.addNode('recognition-program-forms','Recognition Program Forms',ssUrlPrefix + 'form-finder/recognition-program-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat2  \x3cmatches\x3e  \x6091\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat2  \x3csubstring\x3e  \x60, 91\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat2  \x3csubstring\x3e  \x6091, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat2  \x3csubstring\x3e  \x60, 91, \x60','secondaryUrlVariableField==region1');
g_navNode_3_13=g_navNode_3.addNode('recruiting-forms','Recruitment and Selection Forms',ssUrlPrefix + 'form-finder/recruiting-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6039\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 39\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6039, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 39, \x60','secondaryUrlVariableField==region1');
g_navNode_3_14=g_navNode_3.addNode('separation-forms','Separation Forms',ssUrlPrefix + 'form-finder/separation-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6064\x60  \x3cAND\x3e xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 64\x60  \x3cAND\x3e xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6064, \x60  \x3cAND\x3e xWebsites  \x3ccontains\x3e  \x60ohr\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 64, \x60  \x3cAND\x3e xWebsites  \x3ccontains\x3e  \x60ohr\x60');
g_navNode_3_15=g_navNode_3.addNode('temporary-employment-forms','Temporary Employment Forms',ssUrlPrefix + 'form-finder/temporary-employment-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6048\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 48\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6048, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 48, \x60','secondaryUrlVariableField==region1');
g_navNode_3_16=g_navNode_3.addNode('training-development-forms','Training and Talent Development Forms',ssUrlPrefix + 'form-finder/training-development-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6049\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 49\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6049, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 49, \x60','secondaryUrlVariableField==region1');
g_navNode_3_17=g_navNode_3.addNode('work-life-wellness-forms','Work-Life and Wellness Forms',ssUrlPrefix + 'form-finder/work-life-wellness-forms/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6036\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 36\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6036, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Form\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 36, \x60','secondaryUrlVariableField==region1');
g_navNode_4=g_navNode_Root.addNode('emp_relations','Employee / Management Relations',ssUrlPrefix + 'employee-relations/index.htm','InMainNav==TRUE','secondaryUrlVariableField==region1');
g_navNode_4_0=g_navNode_4.addNode('workplace-investigations','Workplace Investigations and Safety',ssUrlPrefix + 'employee-relations/workplace-investigations/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6051\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 51\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6051, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 51, \x60  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6051\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 51\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6051, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 51, \x60','secondaryUrlVariableField==region1');
g_navNode_4_1=g_navNode_4.addNode('perf-mgmt','Performance Management',ssUrlPrefix + 'employee-relations/perf-mgmt/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6047\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 47\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6047, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 47, \x60  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6047\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 47\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6047, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 47, \x60','secondaryUrlVariableField==region1');
g_navNode_4_2=g_navNode_4.addNode('disciplinary-processes','Disciplinary Processes',ssUrlPrefix + 'employee-relations/disciplinary-processes/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6059\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 59\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6059, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 59, \x60  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6059\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 59\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6059, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 59, \x60','secondaryUrlVariableField==region1');
g_navNode_4_3=g_navNode_4.addNode('consultations','Consultations and Training',ssUrlPrefix + 'employee-relations/consultations/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6060\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 60\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6060, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 60, \x60  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6060\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 60\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6060, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 60, \x60','secondaryUrlVariableField==region1');
g_navNode_4_4=g_navNode_4.addNode('grievances-formal-appeals','Grievances and Formal Appeals',ssUrlPrefix + 'employee-relations/grievances-formal-appeals/index.htm','dynListOne==dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6046\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 46\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6046, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Policy\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 46, \x60  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3cmatches\x3e  \x6046\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 46\x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x6046, \x60  \x3cOR\x3e  dDocType  \x3cmatches\x3e  \x60Procedure\x60  \x3cAND\x3e  xCat1  \x3csubstring\x3e  \x60, 46, \x60','secondaryUrlVariableField==region1');
g_navNode_4_5=g_navNode_4.addNode('admin-leave','Administrative Leave Programs',ssUrlPrefix + 'employee-relations/admin-leave/index.htm','secondaryUrlVariableField==region1');
g_navNode_4_6=g_navNode_4.addNode('em-relations-contacts','Contacts',ssUrlPrefix + 'employee-relations/em-relations-contacts/index.htm');
g_navNode_5=g_navNode_Root.addNode('classification','Classification \x26 Compensation',ssUrlPrefix + 'classification-compensation/index.htm','InMainNav==TRUE','secondaryUrlVariableField==region1');
g_navNode_5_0=g_navNode_5.addNode('100406','FY 2012 Salary Increase Guidelines \x28for SPA and EPA NF\x29',ssUrlPrefix + 'classification-compensation/sal-incr/index.htm','InMainNav==false','contributorOnly==false','secondaryUrlVariableField==region1');
g_navNode_5_1=g_navNode_5.addNode('position-classification','Position Classification',ssUrlPrefix + 'classification-compensation/position-classification/index.htm','secondaryUrlVariableField==region1');
g_navNode_5_2=g_navNode_5.addNode('wage-hour-provision','Wage-Hour Provision ',ssUrlPrefix + 'classification-compensation/wage-hour-provision/index.htm','secondaryUrlVariableField==region1');
g_navNode_5_3=g_navNode_5.addNode('compensation-pols','Compensation Policies',ssUrlPrefix + 'classification-compensation/compensation-pols/index.htm','secondaryUrlVariableField==region1');
g_navNode_5_4=g_navNode_5.addNode('additional-resources','Additional Career Banding Resources',ssUrlPrefix + 'classification-compensation/additional-resources/index.htm','secondaryUrlVariableField==region1');
g_navNode_5_5=g_navNode_5.addNode('ubc','Unified Business Cluster \x28UBC\x29 and Span of Control Guidelines',ssUrlPrefix + 'classification-compensation/ubc/index.htm','secondaryUrlVariableField==region1');
g_navNode_5_6=g_navNode_5.addNode('class-comp-contacts','Contacts',ssUrlPrefix + 'classification-compensation/class-comp-contacts/index.htm');
g_navNode_6=g_navNode_Root.addNode('training','Training \x26 Talent Development',ssUrlPrefix + 'training-development/index.htm','InMainNav==TRUE','secondaryUrlVariableField==region1');
g_navNode_6_0=g_navNode_6.addNode('programs-and-courses','Programs and Course Offerings',ssUrlPrefix + 'training-development/programs-and-courses/index.htm','secondaryUrlVariableField==region1');
g_navNode_6_0_0=g_navNode_6_0.addNode('learning-modules','Learning Modules',ssUrlPrefix + 'training-development/programs-and-courses/learning-modules/index.htm','secondaryUrlVariableField==region1');
g_navNode_6_0_2=g_navNode_6_0.addNode('program-registration','Program Registration',ssUrlPrefix + 'training-development/programs-and-courses/program-registration/index.htm');
g_navNode_6_1=g_navNode_6.addNode('specialized-programs','Specialized Programs and Resources',ssUrlPrefix + 'training-development/specialized-programs/index.htm','secondaryUrlVariableField==region1');
g_navNode_6_1_0=g_navNode_6_1.addNode('clerical-skills-training','Clerical Skills Training Program',ssUrlPrefix + 'training-development/specialized-programs/clerical-skills-training/index.htm','secondaryUrlVariableField==region1');
g_navNode_6_1_2=g_navNode_6_1.addNode('literacy-program','Literacy Program',ssUrlPrefix + 'training-development/specialized-programs/literacy-program/index.htm','secondaryUrlVariableField==region1');
g_navNode_6_1_3=g_navNode_6_1.addNode('mentoring-resources','Mentoring Resources',ssUrlPrefix + 'training-development/specialized-programs/mentoring-resources/index.htm','secondaryUrlVariableField==region1');
g_navNode_6_1_4=g_navNode_6_1.addNode('organizational-development','Organizational Development',ssUrlPrefix + 'training-development/specialized-programs/organizational-development/index.htm','secondaryUrlVariableField==region1');
g_navNode_6_1_5=g_navNode_6_1.addNode('development-opportunities','Professional Development Opportunities',ssUrlPrefix + 'training-development/specialized-programs/development-opportunities/index.htm','secondaryUrlVariableField==region1');
g_navNode_6_1_6=g_navNode_6_1.addNode('supervisory-management','Supervisory/ Management Training',ssUrlPrefix + 'training-development/specialized-programs/supervisory-management/index.htm','secondaryUrlVariableField==region1');
g_navNode_6_1_7=g_navNode_6_1.addNode('u-lead','University Leadership Education and Development \x28U-LEAD\x29',ssUrlPrefix + 'training-development/specialized-programs/u-lead/index.htm','secondaryUrlVariableField==region1');
g_navNode_6_2=g_navNode_6.addNode('training-dev-contacts','Contacts',ssUrlPrefix + 'training-development/training-dev-contacts/index.htm');
g_navNode_7=g_navNode_Root.addNode('news_events','News and Events',ssUrlPrefix + 'news-events/items','InMainNav==TRUE','secondaryUrlVariableField==region1','xmlQueryText==dDocType \x3cmatches\x3e \x60News\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60ohr\x3anews\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60');
g_navNode_8=g_navNode_Root.addNode('faculty_staff','For Faculty \x26 Staff',ssUrlPrefix + 'faculty-and-staff/index.htm','secondaryUrlVariableField==region1');
g_navNode_8_0=g_navNode_8.addNode('personnelflexibility','UNC Personnel Flexibility Initiative',ssUrlPrefix + 'faculty-and-staff/personnelflexibility/index.htm','secondaryUrlVariableField==region1');
g_navNode_8_1=g_navNode_8.addNode('prm-report','PRM Report on Housekeeping Services',ssUrlPrefix + 'faculty-and-staff/prm-report/index.htm','secondaryUrlVariableField==region1');
g_navNode_8_2=g_navNode_8.addNode('factbook','Workforce Fact Book',ssUrlPrefix + 'faculty-and-staff/factbook/index.htm','secondaryUrlVariableField==region1');
g_navNode_8_3=g_navNode_8.addNode('adv-wx-land','Adverse Weather',ssUrlPrefix + 'faculty-and-staff/adv-wx-land/index.htm','secondaryUrlVariableField==region1');
g_navNode_8_4=g_navNode_8.addNode('survey','Organizational Effectiveness Survey',ssUrlPrefix + 'faculty-and-staff/survey/index.htm','secondaryUrlVariableField==region1');
g_navNode_9=g_navNode_Root.addNode('managers','For Managers \x26 HR Facilitators',ssUrlPrefix + 'managers-and-hr-facilitators/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_0=g_navNode_9.addNode('hr-fac_hr-staff-directory','HR Staff Directory',ssUrlPrefix + 'managers-and-hr-facilitators/hr-staff-directory/index.htm');
g_navNode_9_1=g_navNode_9.addNode('hr-fac_hr-connect','HR Connect',ssUrlPrefix + 'managers-and-hr-facilitators/hr-fac_hr-connect/index.htm');
g_navNode_9_2=g_navNode_9.addNode('hr-facilitator-program','HR Facilitator Program',ssUrlPrefix + 'managers-and-hr-facilitators/hr-facilitator-program/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_0=g_navNode_9_2.addNode('hrf-resources','HR Facilitator Resources',ssUrlPrefix + 'managers-and-hr-facilitators/hr-facilitator-program/hrf-resources/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_2_1=g_navNode_9_2.addNode('hrf-certification','HR Facilitator Certification',ssUrlPrefix + 'managers-and-hr-facilitators/hr-facilitator-program/hrf-certification/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_3=g_navNode_9.addNode('hr-facilitator-department','HR Facilitator Department Lists',ssUrlPrefix + 'managers-and-hr-facilitators/hr-facilitator-department/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_4=g_navNode_9.addNode('100444','HR Facilitator Resources',ssUrlPrefix + 'managers-and-hr-facilitators/hrf-resources/index.htm','secondaryUrlVariableField==region1');
g_navNode_9_5=g_navNode_9.addNode('hraac','HR Administrative Advisory Council',ssUrlPrefix + 'managers-and-hr-facilitators/hraac/index.htm','secondaryUrlVariableField==region1');
g_navNode_10=g_navNode_Root.addNode('about_hr','About Human Resources',ssUrlPrefix + 'about-ohr/index.htm','secondaryUrlVariableField==region1');
g_navNode_10_0=g_navNode_10.addNode('senior-leadership','HR Senior Leadership',ssUrlPrefix + 'about-ohr/senior-leadership/index.htm','secondaryUrlVariableField==region1');
g_navNode_10_1=g_navNode_10.addNode('hr-staff-directory','HR Staff Directory',ssUrlPrefix + 'about-ohr/hr-staff-directory/index.htm','secondaryUrlVariableField==region1');
g_navNode_10_1_0=g_navNode_10_1.addNode('vice-chancellor-for-hr','Office of the Vice Chancellor for Human Resources',ssUrlPrefix + 'about-ohr/hr-staff-directory/vice-chancellor-for-hr/index.htm','secondaryUrlVariableField==region1');
g_navNode_10_1_1=g_navNode_10_1.addNode('benefits-services','Benefits and Work/Life Programs',ssUrlPrefix + 'about-ohr/hr-staff-directory/benefits-services/index.htm','secondaryUrlVariableField==region1');
g_navNode_10_1_2=g_navNode_10_1.addNode('employment-classification-dir','Classification and Compensation',ssUrlPrefix + 'about-ohr/hr-staff-directory/employment-classification-dir/index.htm','secondaryUrlVariableField==region1');
g_navNode_10_1_3=g_navNode_10_1.addNode('employee-mgmt-relations-dir','Employee and Management Relations',ssUrlPrefix + 'about-ohr/hr-staff-directory/employee-management-relations-dir/index.htm','secondaryUrlVariableField==region1');
g_navNode_10_1_4=g_navNode_10_1.addNode('EmpStaffing','Employment \x26 Staffing',ssUrlPrefix + 'about-ohr/hr-staff-directory/EmpStaffing/index.htm','secondaryUrlVariableField==region1');
g_navNode_10_1_5=g_navNode_10_1.addNode('epa-non-faculty-hr','EPA Non-Faculty HR',ssUrlPrefix + 'about-ohr/hr-staff-directory/epa-non-faculty-hr/index.htm','secondaryUrlVariableField==region1');
g_navNode_10_1_6=g_navNode_10_1.addNode('administration-and-systems','HR Administration and Systems',ssUrlPrefix + 'about-ohr/hr-staff-directory/administration-and-systems/index.htm','secondaryUrlVariableField==region1');
g_navNode_10_1_7=g_navNode_10_1.addNode('hr-communications','HR Communications and Talent Development',ssUrlPrefix + 'about-ohr/hr-staff-directory/hr-communications/index.htm','secondaryUrlVariableField==region1');
g_navNode_10_2=g_navNode_10.addNode('about-hr_hr-connect','HR Connect',ssUrlPrefix + 'about-ohr/about-hr_hr-connect/index.htm');
g_navNode_10_3=g_navNode_10.addNode('map-and-directions','Office Map and Directions',ssUrlPrefix + 'about-ohr/map-and-directions/index.htm','secondaryUrlVariableField==region1');
g_navNode_10_4=g_navNode_10.addNode('hr-organization-chart','HR Organization Chart',ssUrlPrefix + 'about-ohr/hr-organization-chart/index.htm');

