/////////////////////////////////////////////////////////////////////////////
// Function : NavNode (constructor)
// Comments :
/////////////////////////////////////////////////////////////////////////////
function NavNode(id, label, href, parent)
{
	this.m_parent = null;
	this.m_level = 0;

	if (parent)
	{
		this.m_parent = parent;
		this.m_level = parent.m_level+1;
	}

	this.m_id = id;

	// assume that m_label will most often be used directly as HTML
	this.m_rawlabel = label;

	label = label.replace(/&/g, '&amp;');
	label = label.replace(/</g, '&lt;');
	label = label.replace(/>/g, '&gt;');
	label = label.replace(/"/g, '&quot;');

	this.m_label = label;

	this.m_href = href;
	this.m_subNodes = new Array();

	var argValues = NavNode.arguments;
	var argCount = NavNode.arguments.length;

	for (i = 4 ; i < argCount ; i++)
	{
		var eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		eval("this.cp_" + attrName + " = '" + attrValue + "';");
	}

	NavNode.prototype.addNode = addNode;
	NavNode.prototype.isSelected = isSelected;
}

/////////////////////////////////////////////////////////////////////////////
// Function : addNode
// Comments :
/////////////////////////////////////////////////////////////////////////////
function addNode(id, label, href)
{
	var newIndex = this.m_subNodes.length;
	var newNode = new NavNode(id, label, href, this);

	var argValues = addNode.arguments;
	var argCount = addNode.arguments.length;

	for (i = 3 ; i < argCount ; i++)
	{
		var eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		eval("newNode.cp_" + attrName + " = '" + attrValue + "';");
	}

	this.m_subNodes[newIndex] = newNode;
	return newNode;
}

/////////////////////////////////////////////////////////////////////////////
// Function : isSelected
// Comments :
/////////////////////////////////////////////////////////////////////////////
function isSelected()
{
    var pos = window.location.href.lastIndexOf("/");
    var docname = window.location.href.substring(pos+1, window.location.href.length);

    pos = this.m_href.lastIndexOf("/");
    var myname = this.m_href.substring(pos+1, this.m_href.length);

    if (docname == myname)
		return true;
	else
		return false;
}

/////////////////////////////////////////////////////////////////////////////
// Function : customSectionPropertyExists
// Comments :
/////////////////////////////////////////////////////////////////////////////
function customSectionPropertyExists(csp)
{
	return (typeof csp != _U && csp != null);
}

/////////////////////////////////////////////////////////////////////////////
// Function : getCustomSectionProperty
// Comments :
/////////////////////////////////////////////////////////////////////////////
function getCustomSectionProperty(csp)
{
	if (customSectionPropertyExists(csp))
	{
		return csp;
	}
	else
	{
		return "";
	}
}

/////////////////////////////////////////////////////////////////////////////

var g_navNode_Root = new NavNode('54','Home',ssUrlPrefix + 'index.htm',null,'IncludeInTopNav==FALSE');
g_navNode_0=g_navNode_Root.addNode('2','Retirement Plan Solutions',ssUrlPrefix + 'RetirementPlanSolutions/index.htm','IncludeInFooter==TRUE','IncludeInMainNav==TRUE');
g_navNode_0_0=g_navNode_0.addNode('3','Retirement Plan Services',ssUrlPrefix + 'RetirementPlanSolutions/RetirementplanServices/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE');
g_navNode_0_0_0=g_navNode_0_0.addNode('70','Outsourcing \x26 Product Distribution',ssUrlPrefix + 'RetirementPlanSolutions/RetirementplanServices/OutsourcingandProductDistribution/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_0_1=g_navNode_0_0.addNode('74','Marketing \x26 Sales Support',ssUrlPrefix + 'RetirementPlanSolutions/RetirementplanServices/MarketingandSalesSupport/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_0_2=g_navNode_0_0.addNode('75','Plan Design \x26 Documents',ssUrlPrefix + 'RetirementPlanSolutions/RetirementplanServices/PlanDesignDocuments/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_0_3=g_navNode_0_0.addNode('76','Investments',ssUrlPrefix + 'RetirementPlanSolutions/RetirementplanServices/Investments/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_0_4=g_navNode_0_0.addNode('77','Employee Education',ssUrlPrefix + 'RetirementPlanSolutions/RetirementplanServices/EmployeeEducation/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_0_5=g_navNode_0_0.addNode('78','Plan Implementation \x26 Conversion',ssUrlPrefix + 'RetirementPlanSolutions/RetirementplanServices/PlanImplementationandConversion/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_0_6=g_navNode_0_0.addNode('79','Plan Administration \x26 Recordkeeping',ssUrlPrefix + 'RetirementPlanSolutions/RetirementplanServices/PlanAdministrationandRecordkeeping/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_0_7=g_navNode_0_0.addNode('80','ERISA Consulting \x26 Compliance',ssUrlPrefix + 'RetirementPlanSolutions/RetirementplanServices/ERISAConsultingandCompliance/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_0_8=g_navNode_0_0.addNode('81','Trust \x26 Custody',ssUrlPrefix + 'RetirementPlanSolutions/RetirementplanServices/TrustandCustody/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_1=g_navNode_0.addNode('4','Document Services',ssUrlPrefix + 'RetirementPlanSolutions/DocumentServices/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE');
g_navNode_0_1_0=g_navNode_0_1.addNode('85','Contract Restatement \x26 Amendment Services',ssUrlPrefix + 'RetirementPlanSolutions/DocumentServices/ContractRestatementAmendmentServices/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_1_1=g_navNode_0_1.addNode('86','Irrevocable Trust',ssUrlPrefix + 'RetirementPlanSolutions/DocumentServices/IrrevocableTrust/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_1_2=g_navNode_0_1.addNode('87','Rabbi Trust',ssUrlPrefix + 'RetirementPlanSolutions/DocumentServices/RabbiTrust/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_1_3=g_navNode_0_1.addNode('88','Trusteed Buy/Sell',ssUrlPrefix + 'RetirementPlanSolutions/DocumentServices/TrustedBuySell/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_2=g_navNode_0.addNode('7','Processing \x26 Administration',ssUrlPrefix + 'RetirementPlanSolutions/ProcessingAdministration/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==FALSE','IncludeInSubNav==TRUE');
g_navNode_0_2_0=g_navNode_0_2.addNode('89','Fully-Administered IRAdirect Program',ssUrlPrefix + 'RetirementPlanSolutions/ProcessingAdministration/FullyAdministeredIRAdirect/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_2_1=g_navNode_0_2.addNode('90','Self-Administered IRAdirect Program',ssUrlPrefix + 'RetirementPlanSolutions/ProcessingAdministration/SelfAdministeredIRAdirect/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_0_2_2=g_navNode_0_2.addNode('91','Tax Reporting \x26 Year End Services',ssUrlPrefix + 'RetirementPlanSolutions/ProcessingAdministration/TaxReportingandYearEndServices/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_1=g_navNode_Root.addNode('72','Training Services',ssUrlPrefix + 'TrainingServices/index.htm','IncludeInFooter==FALSE','IncludeInMainNav==FALSE');
g_navNode_1_0=g_navNode_1.addNode('192','Credit Unions',ssUrlPrefix + 'TrainingServices/CreditUnions/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions');
g_navNode_1_0_0=g_navNode_1_0.addNode('207','Distance Learning',ssUrlPrefix + 'TrainingServices/CreditUnions/DistanceLearning/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_0_0=g_navNode_1_0_0.addNode('209','IRA Basics eLearning',ssUrlPrefix + 'TrainingServices/CreditUnions/DistanceLearning/IRABasicseLearning/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_0_1=g_navNode_1_0_0.addNode('263','Ascensus U eLearning',ssUrlPrefix + 'TrainingServices/CreditUnions/DistanceLearning/AscensusUeLearning/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_0_2=g_navNode_1_0_0.addNode('210','IRA University',ssUrlPrefix + 'TrainingServices/CreditUnions/DistanceLearning/IRAUniversity/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_0_3=g_navNode_1_0_0.addNode('214','IRA FastTrack',ssUrlPrefix + 'TrainingServices/CreditUnions/DistanceLearning/IRAFastTrack/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_0_4=g_navNode_1_0_0.addNode('215','IRA Online Institute',ssUrlPrefix + 'TrainingServices/CreditUnions/DistanceLearning/IRAOnlineInstitute/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_0_5=g_navNode_1_0_0.addNode('216','Webinars',ssUrlPrefix + 'TrainingServices/CreditUnions/DistanceLearning/Webinars/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_1=g_navNode_1_0.addNode('208','Instructor Led',ssUrlPrefix + 'TrainingServices/CreditUnions/InstructorLed/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_1_0=g_navNode_1_0_1.addNode('211','IRA Supertrain',ssUrlPrefix + 'TrainingServices/CreditUnions/InstructorLed/IRASupertrain/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_1_1=g_navNode_1_0_1.addNode('269','Supertrain Pre-Conference Workshops',ssUrlPrefix + 'TrainingServices/CreditUnions/InstructorLed/ESAHSAWorkshops/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_1_2=g_navNode_1_0_1.addNode('217','Fall Forum',ssUrlPrefix + 'TrainingServices/CreditUnions/InstructorLed/FallForum/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_1_3=g_navNode_1_0_1.addNode('218','IRA Institute',ssUrlPrefix + 'TrainingServices/CreditUnions/InstructorLed/IRAInstitute/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_1_4=g_navNode_1_0_1.addNode('219','Seminar Tour Workshops',ssUrlPrefix + 'TrainingServices/CreditUnions/InstructorLed/SeminarTour/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_1_5=g_navNode_1_0_1.addNode('274','Half-Day HSA Workshop',ssUrlPrefix + 'TrainingServices/CreditUnions/InstructorLed/Half-DayHSAWorkshop/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_1_6=g_navNode_1_0_1.addNode('249','Two-Day IRA Workshop',ssUrlPrefix + 'TrainingServices/CreditUnions/InstructorLed/Two-DayIRAWorkshop/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_1_7=g_navNode_1_0_1.addNode('53','IRA On-Site Workshop',ssUrlPrefix + 'TrainingServices/CreditUnions/InstructorLed/IRAOnSiteWorkshop/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_1_8=g_navNode_1_0_1.addNode('55','Coverdell ESA Workshop',ssUrlPrefix + 'TrainingServices/CreditUnions/InstructorLed/CoverdellESAWorkshop/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_1_9=g_navNode_1_0_1.addNode('56','Health Savings Account Workshop',ssUrlPrefix + 'TrainingServices/CreditUnions/InstructorLed/HealthSavingsAccountWorkshop/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_1_10=g_navNode_1_0_1.addNode('57','IRA\x3ci\x3edirect\x3c/i\x3e Workshop',ssUrlPrefix + 'TrainingServices/CreditUnions/InstructorLed/IRAdirectWorkshop/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_2=g_navNode_1_0.addNode('212','Training Products',ssUrlPrefix + 'TrainingServices/CreditUnions/TrainingProducts/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_2_0=g_navNode_1_0_2.addNode('221','Trainer Toolkit',ssUrlPrefix + 'TrainingServices/CreditUnions/TrainingProducts/TrainerToolkit/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_2_1=g_navNode_1_0_2.addNode('222','Training Organizers',ssUrlPrefix + 'TrainingServices/CreditUnions/TrainingProducts/TrainingOrganizers/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_2_2=g_navNode_1_0_2.addNode('223','Video Training Series',ssUrlPrefix + 'TrainingServices/CreditUnions/TrainingProducts/VideoTrainingSeries/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_2_3=g_navNode_1_0_2.addNode('224','eLearning Library',ssUrlPrefix + 'TrainingServices/CreditUnions/TrainingProducts/eLearningLibrary/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_0_3=g_navNode_1_0.addNode('213','Designations \x26 Education Credits',ssUrlPrefix + 'TrainingServices/CreditUnions/DesignationsCertificationCredits/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Credit Unions','OffSetSubNavLinks==TRUE');
g_navNode_1_1=g_navNode_1.addNode('191','Banks',ssUrlPrefix + 'TrainingServices/Banks/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==FALSE','MenuBarValue==Banks');
g_navNode_1_1_0=g_navNode_1_1.addNode('193','Distance Learning',ssUrlPrefix + 'TrainingServices/Banks/DistanceLearning/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_0_0=g_navNode_1_1_0.addNode('194','Ascensus U eLearning',ssUrlPrefix + 'TrainingServices/Banks/DistanceLearning/AscensusUelearning/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_0_1=g_navNode_1_1_0.addNode('196','IRA Online Institute',ssUrlPrefix + 'TrainingServices/Banks/DistanceLearning/IRAInstituteOnline/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_0_2=g_navNode_1_1_0.addNode('198','Webinars',ssUrlPrefix + 'TrainingServices/Banks/DistanceLearning/Webinars/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_1=g_navNode_1_1.addNode('199','Instructor Led',ssUrlPrefix + 'TrainingServices/Banks/InstructorLed/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_1_0=g_navNode_1_1_1.addNode('202','Fall Forum',ssUrlPrefix + 'TrainingServices/Banks/InstructorLed/FallForum/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_1_1=g_navNode_1_1_1.addNode('201','IRA Institute',ssUrlPrefix + 'TrainingServices/Banks/InstructorLed/IRAInstitute/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_1_2=g_navNode_1_1_1.addNode('200','Seminar Tour Workshop',ssUrlPrefix + 'TrainingServices/Banks/InstructorLed/SeminarTour/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_1_3=g_navNode_1_1_1.addNode('275','Half-Day HSA Workshop',ssUrlPrefix + 'TrainingServices/Banks/InstructorLed/Half-DayHSAWorkshop/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_1_4=g_navNode_1_1_1.addNode('231','Two-Day IRA Workshop',ssUrlPrefix + 'TrainingServices/Banks/InstructorLed/Two-DayIRAWorkshop/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_1_5=g_navNode_1_1_1.addNode('230','On-Site Training',ssUrlPrefix + 'TrainingServices/Banks/InstructorLed/On-SiteTraining/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_2=g_navNode_1_1.addNode('204','Training Products',ssUrlPrefix + 'TrainingServices/Banks/TrainingProducts/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_2_0=g_navNode_1_1_2.addNode('206','Training Organizers',ssUrlPrefix + 'TrainingServices/Banks/TrainingProducts/TrainingOrganizers/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_2_1=g_navNode_1_1_2.addNode('205','Video Training Series',ssUrlPrefix + 'TrainingServices/Banks/TrainingProducts/VideoTrainingSeriesBanks/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_2_2=g_navNode_1_1_2.addNode('232','eLearning Library',ssUrlPrefix + 'TrainingServices/Banks/TrainingProducts/eLearningLibrary/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_1_3=g_navNode_1_1.addNode('98','Designations \x26 Education Credits',ssUrlPrefix + 'TrainingServices/Banks/ProfessionalDesignationsContinutingEducation/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Banks','OffSetSubNavLinks==TRUE');
g_navNode_1_2=g_navNode_1.addNode('233','Brokerage/Insurance',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance');
g_navNode_1_2_0=g_navNode_1_2.addNode('234','Distance Learning',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/DistanceLearning/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==FALSE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_0_0=g_navNode_1_2_0.addNode('238','Ascensus U eLearning',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/DistanceLearning/AscensusUeLearning/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_0_1=g_navNode_1_2_0.addNode('239','IRA Online Institute',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/DistanceLearning/IRAOnlineInstitute/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_0_2=g_navNode_1_2_0.addNode('240','Webinars',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/DistanceLearning/Webinars/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_1=g_navNode_1_2.addNode('235','Instructor Led',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/InstructorLed/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_1_0=g_navNode_1_2_1.addNode('241','Fall Forum',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/InstructorLed/FallForum/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_1_1=g_navNode_1_2_1.addNode('242','IRA Institute',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/InstructorLed/IRAInstitute/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_1_2=g_navNode_1_2_1.addNode('243','Seminar Tour Workshops',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/InstructorLed/SeminarTour/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_1_3=g_navNode_1_2_1.addNode('276','Half-Day HSA Workshop',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/InstructorLed/Half-DayHSAWorkshop/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_1_4=g_navNode_1_2_1.addNode('244','Two-day IRA Workshop',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/InstructorLed/Two-dayIRAWorkshop/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_1_5=g_navNode_1_2_1.addNode('245','On-Site Training',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/InstructorLed/On-SiteTraining/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_2=g_navNode_1_2.addNode('236','Training Products',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/TrainingProducts/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_2_0=g_navNode_1_2_2.addNode('246','Training Organizers',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/TrainingProducts/TrainingOrganizers/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_2_1=g_navNode_1_2_2.addNode('247','Video Training Series',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/TrainingProducts/VideoTrainingSeries/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_2_2=g_navNode_1_2_2.addNode('248','eLearning Library',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/TrainingProducts/eLearningLibrary/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_1_2_3=g_navNode_1_2.addNode('237','Designations \x26 Education Credits',ssUrlPrefix + 'TrainingServices/BrokerageInsurance/DesignationsEducationCredits/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE','MenuBarValue==Brokerage/Insurance','OffSetSubNavLinks==TRUE');
g_navNode_2=g_navNode_Root.addNode('68','Software \x26 Calculators',ssUrlPrefix + 'SoftwareAndCalculators/index.htm','IncludeInFooter==TRUE','IncludeInMainNav==TRUE');
g_navNode_2_0=g_navNode_2.addNode('93','Software Solutions',ssUrlPrefix + 'SoftwareAndCalculators/SoftwareSolutions/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE');
g_navNode_2_0_0=g_navNode_2_0.addNode('95','Retirement Central',ssUrlPrefix + 'SoftwareAndCalculators/SoftwareSolutions/RetirementCentral/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_0_1=g_navNode_2_0.addNode('120','IRA Service Center',ssUrlPrefix + 'SoftwareAndCalculators/SoftwareSolutions/IRAServiceCenter/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_0_2=g_navNode_2_0.addNode('121','HSA Service Center',ssUrlPrefix + 'SoftwareAndCalculators/SoftwareSolutions/HSAServiceCenter/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_0_3=g_navNode_2_0.addNode('122','Plan Adoption System',ssUrlPrefix + 'SoftwareAndCalculators/SoftwareSolutions/PlanAdoptionSystem/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_0_4=g_navNode_2_0.addNode('123','Individual\x28k\x29',ssUrlPrefix + 'SoftwareAndCalculators/SoftwareSolutions/Individualk/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_0_5=g_navNode_2_0.addNode('125','eResource Center',ssUrlPrefix + 'SoftwareAndCalculators/SoftwareSolutions/eResourceCenter/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_1=g_navNode_2.addNode('94','Calculators \x26 Planning Tools',ssUrlPrefix + 'SoftwareAndCalculators/CalculatorsPlanningTools/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE');
g_navNode_2_1_0=g_navNode_2_1.addNode('136','IRA Strategist',ssUrlPrefix + 'SoftwareAndCalculators/CalculatorsPlanningTools/IRAStrategist/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_1_1=g_navNode_2_1.addNode('137','Distribution Strategist',ssUrlPrefix + 'SoftwareAndCalculators/CalculatorsPlanningTools/DistributionStrategist/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_1_2=g_navNode_2_1.addNode('138','Business Retirement Strategist',ssUrlPrefix + 'SoftwareAndCalculators/CalculatorsPlanningTools/BusinessRetirementStrategist/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_1_3=g_navNode_2_1.addNode('139','Retirement Savings Planner',ssUrlPrefix + 'SoftwareAndCalculators/CalculatorsPlanningTools/RetirementSavingsPlanner/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_1_4=g_navNode_2_1.addNode('140','Major Purchase Planner',ssUrlPrefix + 'SoftwareAndCalculators/CalculatorsPlanningTools/MajorPurchasePlanner/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_1_5=g_navNode_2_1.addNode('141','College Planner',ssUrlPrefix + 'SoftwareAndCalculators/CalculatorsPlanningTools/CollegePlanner/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_1_6=g_navNode_2_1.addNode('142','Roth\x28k\x29 Comparison Projector',ssUrlPrefix + 'SoftwareAndCalculators/CalculatorsPlanningTools/RothkComparisionProjector/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_1_7=g_navNode_2_1.addNode('143','Disclosure Software',ssUrlPrefix + 'SoftwareAndCalculators/CalculatorsPlanningTools/DisclosureSoftware/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_2_1_8=g_navNode_2_1.addNode('144','Distribution Software',ssUrlPrefix + 'SoftwareAndCalculators/CalculatorsPlanningTools/DistributionSoftware/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3=g_navNode_Root.addNode('82','Forms \x26 Publications',ssUrlPrefix + 'FormPublications/index.htm','IncludeInFooter==TRUE','IncludeInMainNav==TRUE');
g_navNode_3_0=g_navNode_3.addNode('117','Forms \x26 Documents',ssUrlPrefix + 'FormPublications/FormsDocuments/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE');
g_navNode_3_0_0=g_navNode_3_0.addNode('145','Qualified Retirement Plans',ssUrlPrefix + 'FormPublications/FormsDocuments/s401kProfitSharingMoneyPurchasePension/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_0_1=g_navNode_3_0.addNode('146','Coverdell Education Savings',ssUrlPrefix + 'FormPublications/FormsDocuments/CoverdellEducationSavings/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_0_2=g_navNode_3_0.addNode('148','Health Savings Account',ssUrlPrefix + 'FormPublications/FormsDocuments/HSA/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_0_3=g_navNode_3_0.addNode('153','SEP Plan',ssUrlPrefix + 'FormPublications/FormsDocuments/SEPIRA/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_0_4=g_navNode_3_0.addNode('154','SIMPLE IRA',ssUrlPrefix + 'FormPublications/FormsDocuments/SIMPLEIRA/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_0_5=g_navNode_3_0.addNode('156','Traditional / Inherited / Roth IRA',ssUrlPrefix + 'FormPublications/FormsDocuments/TraditionalInheritedRothIRA/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_0_6=g_navNode_3_0.addNode('147','Custom Marketing Materials',ssUrlPrefix + 'FormPublications/FormsDocuments/CustomMarketingMaterials/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_0_7=g_navNode_3_0.addNode('152','Electronic Forms',ssUrlPrefix + 'FormPublications/FormsDocuments/ElectronicForms/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_1=g_navNode_3.addNode('157','Publications',ssUrlPrefix + 'FormPublications/Publications/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE');
g_navNode_3_1_0=g_navNode_3_1.addNode('159','Educational Brochures',ssUrlPrefix + 'FormPublications/Publications/EducationalBrochures/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_1_1=g_navNode_3_1.addNode('160','Retirement Plans Bulletin',ssUrlPrefix + 'FormPublications/Publications/RetirementPlansBulletin/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_1_2=g_navNode_3_1.addNode('161','Technical Reference Manuals',ssUrlPrefix + 'FormPublications/Publications/TechnicalReferenceManuals/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_1_3=g_navNode_3_1.addNode('162','Training Manuals',ssUrlPrefix + 'FormPublications/Publications/TrainingManuals/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_1_4=g_navNode_3_1.addNode('163','eResource',ssUrlPrefix + 'FormPublications/Publications/eResource/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_2=g_navNode_3.addNode('158','Catalogs \x26 Ordering',ssUrlPrefix + 'FormPublications/OrderingInformation/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE');
g_navNode_3_2_0=g_navNode_3_2.addNode('31','View Catalogs',ssUrlPrefix + 'FormPublications/OrderingInformation/ViewCatalogs/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_2_1=g_navNode_3_2.addNode('250','Place Order',ssUrlPrefix + 'FormPublications/OrderingInformation/PlaceOrder/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_2_2=g_navNode_3_2.addNode('164','Return Policy',ssUrlPrefix + 'FormPublications/OrderingInformation/ReturnPolicy/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_3_2_3=g_navNode_3_2.addNode('187','Shipping',ssUrlPrefix + 'FormPublications/OrderingInformation/Shipping/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_4=g_navNode_Root.addNode('83','Consulting Solutions',ssUrlPrefix + 'ConsultingSolutions/index.htm','IncludeInFooter==TRUE','IncludeInMainNav==TRUE');
g_navNode_4_0=g_navNode_4.addNode('182','800 Consulting',ssUrlPrefix + 'ConsultingSolutions/Consulting800/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_4_1=g_navNode_4.addNode('184','Fee for Service Engagements',ssUrlPrefix + 'ConsultingSolutions/FeeServiceEng/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_4_2=g_navNode_4.addNode('257','Advanced Sales Call Center',ssUrlPrefix + 'ConsultingSolutions/AdvancedSalesCallCenter/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_5=g_navNode_Root.addNode('84','Employee Benefits Solutions',ssUrlPrefix + 'EmployeeBenefitsSolutions/index.htm','IncludeInFooter==TRUE','IncludeInMainNav==TRUE');
g_navNode_5_0=g_navNode_5.addNode('168','Employee Benefits Meetings',ssUrlPrefix + 'EmployeeBenefitsSolutions/EmployeeBenefitsMeetings/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE');
g_navNode_5_0_0=g_navNode_5_0.addNode('165','Group Presentations',ssUrlPrefix + 'EmployeeBenefitsSolutions/EmployeeBenefitsMeetings/GroupPresentations/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_5_0_1=g_navNode_5_0.addNode('169','Multi-Site Benefit Fairs',ssUrlPrefix + 'EmployeeBenefitsSolutions/EmployeeBenefitsMeetings/Multi-SiteBenefitFairs/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_5_1=g_navNode_5.addNode('174','Multilingual Services',ssUrlPrefix + 'EmployeeBenefitsSolutions/MultilingualServices/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE');
g_navNode_5_1_0=g_navNode_5_1.addNode('176','Document Translation Services',ssUrlPrefix + 'EmployeeBenefitsSolutions/MultilingualServices/DocumentTranslationServices/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_5_1_1=g_navNode_5_1.addNode('177','Employee Meetings',ssUrlPrefix + 'EmployeeBenefitsSolutions/MultilingualServices/EmployeeMeetings/index.htm','IncludeInFooter==TRUE','IncludeInLeftNav==TRUE');
g_navNode_5_2=g_navNode_5.addNode('179','Staffing Solutions',ssUrlPrefix + 'EmployeeBenefitsSolutions/StaffingSolutions/index.htm','IncludeInFooter==TRUE','IncludeInSubNav==TRUE');

