/////////////////////////////////////////////////////////////////////////////
// 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('100000','Home',ssUrlPrefix + 'index.htm',null,'SectionNodeId==100000');
g_navNode_0=g_navNode_Root.addNode('100003','Customers',ssUrlPrefix + 'customers/index.htm','SectionNodeId==100003');
g_navNode_0_0=g_navNode_0.addNode('100004','Customer Solutions',ssUrlPrefix + 'customers/customers/index.htm','SectionNodeId==100003');
g_navNode_0_1=g_navNode_0.addNode('100005','Internet Applications',ssUrlPrefix + 'customers/Applications/index.htm','SectionNodeId==100003');
g_navNode_0_1_0=g_navNode_0_1.addNode('100006','ExpressTrack',ssUrlPrefix + 'customers/Applications/expressChoice/index.htm','SectionNodeId==100003');
g_navNode_0_1_1=g_navNode_0_1.addNode('100007','SchneiderRate',ssUrlPrefix + 'customers/Applications/SchneiderRate/index.htm','SectionNodeId==100003');
g_navNode_0_1_2=g_navNode_0_1.addNode('100008','Track and Trace',ssUrlPrefix + 'customers/Applications/Track_and_Trace/index.htm','SectionNodeId==100003');
g_navNode_0_2=g_navNode_0.addNode('100009','Insurance',ssUrlPrefix + 'customers/Insurance/index.htm','SectionNodeId==100003');
g_navNode_0_3=g_navNode_0.addNode('100010','Customer Tips',ssUrlPrefix + 'customers/CustomerTips/index.htm','SectionNodeId==100003');
g_navNode_0_3_0=g_navNode_0_3.addNode('100011','Loading Instructions',ssUrlPrefix + 'customers/CustomerTips/Loading_Instructions/index.htm','SectionNodeId==100003');
g_navNode_0_3_1=g_navNode_0_3.addNode('100012','Axle Weight Specs',ssUrlPrefix + 'customers/CustomerTips/Axle_Weight/index.htm','SectionNodeId==100003');
g_navNode_0_3_2=g_navNode_0_3.addNode('100013','Border Crossing',ssUrlPrefix + 'customers/CustomerTips/Border_Crossing/index.htm','SectionNodeId==100003');
g_navNode_0_3_3=g_navNode_0_3.addNode('100014','ACE e-Manifest',ssUrlPrefix + 'customers/CustomerTips/ACE_eManifest/index.htm','SectionNodeId==100003');
g_navNode_0_4=g_navNode_0.addNode('100016','Accessorial Data',ssUrlPrefix + 'customers/Accessorial_Data/index.htm','SectionNodeId==100003');
g_navNode_3=g_navNode_Root.addNode('100041','Jobs',ssUrlPrefix + 'Jobs/index.htm','SectionNodeId==100041');
g_navNode_4=g_navNode_Root.addNode('100042','Truckload Services',ssUrlPrefix + 'truckload/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0=g_navNode_4.addNode('100160','United States',ssUrlPrefix + 'truckload/UnitedStates/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_0=g_navNode_4_0.addNode('100163','Van',ssUrlPrefix + 'truckload/UnitedStates/Truckload/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_0_0=g_navNode_4_0_0.addNode('100043','National',ssUrlPrefix + 'truckload/UnitedStates/Truckload/One_Way/index.htm','SectionNodeId==100042','SubSection2NodeId==100043','SubSectionNodeId==100160');
g_navNode_4_0_0_0_0=g_navNode_4_0_0_0.addNode('100045','Equipment',ssUrlPrefix + 'truckload/UnitedStates/Truckload/One_Way/Equipment/index.htm','SectionNodeId==100042','SubSection2NodeId==100043','SubSectionNodeId==100160');
g_navNode_4_0_0_0_1=g_navNode_4_0_0_0.addNode('100164','Facilities',ssUrlPrefix + 'truckload/UnitedStates/Truckload/One_Way/Facilities/index.htm','SectionNodeId==100042','SubSection2NodeId==100043','SubSectionNodeId==100160');
g_navNode_4_0_0_0_2=g_navNode_4_0_0_0.addNode('100166','Network',ssUrlPrefix + 'truckload/UnitedStates/Truckload/One_Way/Network/index.htm','SectionNodeId==100042','SubSection2NodeId==100043','SubSectionNodeId==100160');
g_navNode_4_0_0_1=g_navNode_4_0_0.addNode('100002','Regional',ssUrlPrefix + 'truckload/UnitedStates/Truckload/Regional/index.htm','SectionNodeId==100042','SubSection2NodeId==100002','SubSectionNodeId==100160');
g_navNode_4_0_0_1_0=g_navNode_4_0_0_1.addNode('100169','Terminals',ssUrlPrefix + 'truckload/UnitedStates/Truckload/Regional/Terminals/index.htm','SectionNodeId==100042','SubSection2NodeId==100002','SubSectionNodeId==100160');
g_navNode_4_0_0_1_1=g_navNode_4_0_0_1.addNode('100168','Equipment',ssUrlPrefix + 'truckload/UnitedStates/Truckload/Regional/Equipment/index.htm','SectionNodeId==100042','SubSection2NodeId==100002','SubSectionNodeId==100160');
g_navNode_4_0_0_1_2=g_navNode_4_0_0_1.addNode('100038','Network',ssUrlPrefix + 'truckload/UnitedStates/Truckload/Regional/Network/index.htm','SectionNodeId==100042','SubSection2NodeId==100002','SubSectionNodeId==100160');
g_navNode_4_0_0_2=g_navNode_4_0_0.addNode('100001','Expedited',ssUrlPrefix + 'truckload/UnitedStates/Truckload/Expedited/index.htm','SectionNodeId==100042','SubSection2NodeId==100001','SubSectionNodeId==100160');
g_navNode_4_0_0_2_0=g_navNode_4_0_0_2.addNode('100170','High Value',ssUrlPrefix + 'truckload/UnitedStates/Truckload/Expedited/HighValue/index.htm','SectionNodeId==100042','SubSection2NodeId==100001','SubSectionNodeId==100160');
g_navNode_4_0_0_2_1=g_navNode_4_0_0_2.addNode('100171','Terminals',ssUrlPrefix + 'truckload/UnitedStates/Truckload/Expedited/Terminals/index.htm','SectionNodeId==100042','SubSection2NodeId==100001','SubSectionNodeId==100160');
g_navNode_4_0_0_3=g_navNode_4_0_0.addNode('100241','Rate Inquiry',ssUrlPrefix + 'truckload/UnitedStates/Truckload/RateInquiry/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_1=g_navNode_4_0.addNode('100044','Dedicated',ssUrlPrefix + 'truckload/UnitedStates/Dedicated/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_1_0=g_navNode_4_0_1.addNode('100175','Carrier Equipment',ssUrlPrefix + 'truckload/UnitedStates/Dedicated/Equipment/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_1_1=g_navNode_4_0_1.addNode('100179','Truckload Network',ssUrlPrefix + 'truckload/UnitedStates/Dedicated/Network/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_1_2=g_navNode_4_0_1.addNode('100177','Fleet Start-up Process',ssUrlPrefix + 'truckload/UnitedStates/Dedicated/StartupProcess/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_1_3=g_navNode_4_0_1.addNode('100239','Rate Inquiry',ssUrlPrefix + 'truckload/UnitedStates/Dedicated/RateInquiry/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_2=g_navNode_4_0.addNode('100046','Bulk',ssUrlPrefix + 'truckload/UnitedStates/Bulk/index.htm','SectionNodeId==100042','SubSection2NodeId==100160','SubSectionNodeId==100160');
g_navNode_4_0_2_0=g_navNode_4_0_2.addNode('100180','Long Haul',ssUrlPrefix + 'truckload/UnitedStates/Bulk/LongHaul/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_2_1=g_navNode_4_0_2.addNode('100181','Local and Regional',ssUrlPrefix + 'truckload/UnitedStates/Bulk/LocalandRegional/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_2_2=g_navNode_4_0_2.addNode('100182','Fuel Hauling',ssUrlPrefix + 'truckload/UnitedStates/Bulk/FuelHauling/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_2_3=g_navNode_4_0_2.addNode('100183','Emergency Campaigns',ssUrlPrefix + 'truckload/UnitedStates/Bulk/EmergencyCampaigns/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_2_4=g_navNode_4_0_2.addNode('100184','Rate Inquiry',ssUrlPrefix + 'truckload/UnitedStates/Bulk/RateInquiry/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_0_3=g_navNode_4_0.addNode('100172','Border Crossing',ssUrlPrefix + 'truckload/UnitedStates/BorderCrossing/index.htm','SectionNodeId==100042','SubSectionNodeId==100160');
g_navNode_4_1=g_navNode_4.addNode('100048','Canada',ssUrlPrefix + 'truckload/Canada/index.htm','SectionNodeId==100042','SubSectionNodeId==100048');
g_navNode_4_1_0=g_navNode_4_1.addNode('100185','Van',ssUrlPrefix + 'truckload/Canada/Truckload/index.htm','SectionNodeId==100042','SubSectionNodeId==100048');
g_navNode_4_1_0_0=g_navNode_4_1_0.addNode('100188','National',ssUrlPrefix + 'truckload/Canada/Truckload/National/index.htm','SectionNodeId==100042','SubSection2NodeId==100188','SubSectionNodeId==100048');
g_navNode_4_1_0_0_0=g_navNode_4_1_0_0.addNode('100189','Facilities',ssUrlPrefix + 'truckload/Canada/Truckload/National/Facilities/index.htm','SectionNodeId==100042','SubSection2NodeId==100188','SubSectionNodeId==100048');
g_navNode_4_1_0_0_1=g_navNode_4_1_0_0.addNode('100190','Equipment',ssUrlPrefix + 'truckload/Canada/Truckload/National/Equipment/index.htm','SectionNodeId==100042','SubSection2NodeId==100188','SubSectionNodeId==100048');
g_navNode_4_1_0_0_2=g_navNode_4_1_0_0.addNode('100191','Network',ssUrlPrefix + 'truckload/Canada/Truckload/National/Network/index.htm','SectionNodeId==100042','SubSection2NodeId==100188','SubSectionNodeId==100048');
g_navNode_4_1_0_1=g_navNode_4_1_0.addNode('100193','Expedited',ssUrlPrefix + 'truckload/Canada/Truckload/Expedited/index.htm','SectionNodeId==100042','SubSection2NodeId==100193','SubSectionNodeId==100048');
g_navNode_4_1_0_1_0=g_navNode_4_1_0_1.addNode('100194','High Value',ssUrlPrefix + 'truckload/Canada/Truckload/Expedited/HighValue/index.htm','SectionNodeId==100042','SubSection2NodeId==100193','SubSectionNodeId==100048');
g_navNode_4_1_1=g_navNode_4_1.addNode('100186','Dedicated',ssUrlPrefix + 'truckload/Canada/Dedicated/index.htm','SectionNodeId==100042','SubSectionNodeId==100048');
g_navNode_4_1_1_0=g_navNode_4_1_1.addNode('100196','Equipment',ssUrlPrefix + 'truckload/Canada/Dedicated/Equipment/index.htm','SectionNodeId==100042','SubSectionNodeId==100048');
g_navNode_4_1_1_1=g_navNode_4_1_1.addNode('100197','Facilities',ssUrlPrefix + 'truckload/Canada/Dedicated/Facilities/index.htm','SectionNodeId==100042','SubSectionNodeId==100048');
g_navNode_4_1_1_2=g_navNode_4_1_1.addNode('100198','Start-up Process',ssUrlPrefix + 'truckload/Canada/Dedicated/StartupProcess/index.htm','SectionNodeId==100042','SubSectionNodeId==100048');
g_navNode_4_1_1_3=g_navNode_4_1_1.addNode('100200','Network',ssUrlPrefix + 'truckload/Canada/Dedicated/Network/index.htm','SectionNodeId==100042','SubSectionNodeId==100048');
g_navNode_4_1_2=g_navNode_4_1.addNode('100201','Border Crossing',ssUrlPrefix + 'truckload/Canada/BorderCrossing/index.htm','SectionNodeId==100042','SubSectionNodeId==100048');
g_navNode_4_2=g_navNode_4.addNode('100052','Mexico',ssUrlPrefix + 'truckload/Mexico/index.htm','SectionNodeId==100042','SubSectionNodeId==100052');
g_navNode_4_2_0=g_navNode_4_2.addNode('100047','Van',ssUrlPrefix + 'truckload/Mexico/Customs/index.htm','SectionNodeId==100042','SubSectionNodeId==100052');
g_navNode_4_2_0_0=g_navNode_4_2_0.addNode('100202','National',ssUrlPrefix + 'truckload/Mexico/Customs/National/index.htm','SectionNodeId==100042','SubSection2NodeId==100202','SubSectionNodeId==100052');
g_navNode_4_2_0_0_0=g_navNode_4_2_0_0.addNode('100205','Network',ssUrlPrefix + 'truckload/Mexico/Customs/National/Network/index.htm','SectionNodeId==100042','SubSection2NodeId==100202','SubSectionNodeId==100052');
g_navNode_4_2_0_1=g_navNode_4_2_0.addNode('100207','Expedited',ssUrlPrefix + 'truckload/Mexico/Customs/Expedited/index.htm','SectionNodeId==100042','SubSection2NodeId==100207','SubSectionNodeId==100052');
g_navNode_4_2_0_1_0=g_navNode_4_2_0_1.addNode('100208','High Value',ssUrlPrefix + 'truckload/Mexico/Customs/Expedited/HighValue/index.htm','SectionNodeId==100042','SubSection2NodeId==100207','SubSectionNodeId==100052');
g_navNode_4_2_1=g_navNode_4_2.addNode('100049','Border Crossing',ssUrlPrefix + 'truckload/Mexico/Security/index.htm','SectionNodeId==100042','SubSectionNodeId==100052');
g_navNode_4_3=g_navNode_4.addNode('100162','Truckload Contacts',ssUrlPrefix + 'truckload/TruckloadContacts/index.htm','SectionNodeId==100042','SubSectionNodeId==100162');
g_navNode_5=g_navNode_Root.addNode('100054','Intermodal Services',ssUrlPrefix + 'intermodal/index.htm','SectionNodeId==100054','SubSectionNodeId==100057');
g_navNode_5_0=g_navNode_5.addNode('100057','United States',ssUrlPrefix + 'intermodal/UnitedStates/index.htm','SectionNodeId==100054','SubSectionNodeId==100057');
g_navNode_5_0_0=g_navNode_5_0.addNode('100059','Transcontinental',ssUrlPrefix + 'intermodal/UnitedStates/Transcontinental/index.htm','SectionNodeId==100054','SubSection2NodeId==100059','SubSectionNodeId==100057');
g_navNode_5_0_0_0=g_navNode_5_0_0.addNode('100055','East Bound Solutions',ssUrlPrefix + 'intermodal/UnitedStates/Transcontinental/Dedicated_Rail/index.htm','SectionNodeId==100054','SubSection2NodeId==100059','SubSectionNodeId==100057');
g_navNode_5_0_0_1=g_navNode_5_0_0.addNode('100058','West Bound Solutions',ssUrlPrefix + 'intermodal/UnitedStates/Transcontinental/TruckRail/index.htm','SectionNodeId==100054','SubSection2NodeId==100059','SubSectionNodeId==100057');
g_navNode_5_0_1=g_navNode_5_0.addNode('100062','Regional',ssUrlPrefix + 'intermodal/UnitedStates/Regional/index.htm','SectionNodeId==100054','SubSection2NodeId==100062','SubSectionNodeId==100057');
g_navNode_5_0_1_0=g_navNode_5_0_1.addNode('100133','Northeast',ssUrlPrefix + 'intermodal/UnitedStates/Regional/Northeast/index.htm','SectionNodeId==100054','SubSection2NodeId==100062','SubSectionNodeId==100057');
g_navNode_5_0_1_1=g_navNode_5_0_1.addNode('100134','Southeast',ssUrlPrefix + 'intermodal/UnitedStates/Regional/Southeast/index.htm','SectionNodeId==100054','SubSection2NodeId==100062','SubSectionNodeId==100057');
g_navNode_5_0_1_2=g_navNode_5_0_1.addNode('100135','Midwest',ssUrlPrefix + 'intermodal/UnitedStates/Regional/Midwest/index.htm','SectionNodeId==100054','SubSection2NodeId==100062','SubSectionNodeId==100057');
g_navNode_5_0_1_3=g_navNode_5_0_1.addNode('100136','Southwest',ssUrlPrefix + 'intermodal/UnitedStates/Regional/South/index.htm','SectionNodeId==100054','SubSection2NodeId==100062','SubSectionNodeId==100057');
g_navNode_5_0_1_4=g_navNode_5_0_1.addNode('100137','West',ssUrlPrefix + 'intermodal/UnitedStates/Regional/West/index.htm','SectionNodeId==100054','SubSection2NodeId==100062','SubSectionNodeId==100057');
g_navNode_5_0_1_5=g_navNode_5_0_1.addNode('100138','Pacific Northwest',ssUrlPrefix + 'intermodal/UnitedStates/Regional/PacificNorthwest/index.htm','SectionNodeId==100054','SubSection2NodeId==100062','SubSectionNodeId==100057');
g_navNode_5_0_2=g_navNode_5_0.addNode('100140','Dedicated Rail',ssUrlPrefix + 'intermodal/UnitedStates/DedicatedRail/index.htm','SectionNodeId==100054','SubSection2NodeId==100140','SubSectionNodeId==100057');
g_navNode_5_0_2_0=g_navNode_5_0_2.addNode('100141','Marion, OH',ssUrlPrefix + 'intermodal/UnitedStates/DedicatedRail/MarionOH/index.htm','SectionNodeId==100054','SubSection2NodeId==100140','SubSectionNodeId==100057');
g_navNode_5_0_3=g_navNode_5_0.addNode('100060','Express Services',ssUrlPrefix + 'intermodal/UnitedStates/TruckRail_Express/index.htm','SectionNodeId==100054','SubSection2NodeId==100060','SubSectionNodeId==100057');
g_navNode_5_0_3_0=g_navNode_5_0_3.addNode('100143','Express Container on Flat Car',ssUrlPrefix + 'intermodal/UnitedStates/TruckRail_Express/ExpressContaineronFlatCar/index.htm','SectionNodeId==100054','SubSection2NodeId==100060','SubSectionNodeId==100057');
g_navNode_5_0_4=g_navNode_5_0.addNode('100240','Rate Inquiry',ssUrlPrefix + 'intermodal/UnitedStates/RateInquiry/index.htm','SectionNodeId==100054','SubSectionNodeId==100057');
g_navNode_5_0_5=g_navNode_5_0.addNode('100145','Border Crossing',ssUrlPrefix + 'intermodal/UnitedStates/BorderCrossing/index.htm','SectionNodeId==100054','SubSectionNodeId==100057');
g_navNode_5_1=g_navNode_5.addNode('100146','Mexico',ssUrlPrefix + 'intermodal/Mexico/index.htm','SectionNodeId==100054','SubSectionNodeId==100146');
g_navNode_5_1_0=g_navNode_5_1.addNode('100061','Mexico Direct',ssUrlPrefix + 'intermodal/Mexico/Mexico_Express/index.htm','SectionNodeId==100054','SubSection2NodeId==100061','SubSectionNodeId==100146');
g_navNode_5_1_1=g_navNode_5_1.addNode('100149','Border Crossing',ssUrlPrefix + 'intermodal/Mexico/BorderCrossing/index.htm','SectionNodeId==100054','SubSectionNodeId==100146');
g_navNode_5_2=g_navNode_5.addNode('100150','Canada',ssUrlPrefix + 'intermodal/Canada/index.htm','SectionNodeId==100054','SubSectionNodeId==100150');
g_navNode_5_2_0=g_navNode_5_2.addNode('100151','Border Crossing',ssUrlPrefix + 'intermodal/Canada/BorderCrossing/index.htm','SectionNodeId==100054','SubSectionNodeId==100150');
g_navNode_5_3=g_navNode_5.addNode('100152','Value Added Services',ssUrlPrefix + 'intermodal/ValueAddedService/index.htm','SectionNodeId==100054','SubSectionNodeId==100152');
g_navNode_5_3_0=g_navNode_5_3.addNode('100153','Load Securement',ssUrlPrefix + 'intermodal/ValueAddedService/LoadSecurement/index.htm','SectionNodeId==100054','SubSectionNodeId==100152');
g_navNode_5_3_1=g_navNode_5_3.addNode('100155','Border Crossing',ssUrlPrefix + 'intermodal/ValueAddedService/BorderCrossing/index.htm','SectionNodeId==100054','SubSection2NodeId==100155','SubSectionNodeId==100152');
g_navNode_5_3_2=g_navNode_5_3.addNode('100157','Security',ssUrlPrefix + 'intermodal/ValueAddedService/Security/index.htm','SectionNodeId==100054','SubSectionNodeId==100152');
g_navNode_5_3_3=g_navNode_5_3.addNode('100158','Container Demo',ssUrlPrefix + 'intermodal/ValueAddedService/ContainerDemo/index.htm','SectionNodeId==100054','SubSectionNodeId==100152');
g_navNode_5_4=g_navNode_5.addNode('100159','Intermodal Contacts',ssUrlPrefix + 'intermodal/IntermodalContacts/index.htm','SectionNodeId==100054','SubSectionNodeId==100159');
g_navNode_6=g_navNode_Root.addNode('100064','Logistics Services',ssUrlPrefix + 'logistics/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0=g_navNode_6.addNode('100065','North America',ssUrlPrefix + 'logistics/america/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_0=g_navNode_6_0.addNode('100068','Transportation Management',ssUrlPrefix + 'logistics/america/transportation_mgmt/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_0_0=g_navNode_6_0_0.addNode('100069','Brokerage',ssUrlPrefix + 'logistics/america/transportation_mgmt/brokerage/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_0_1=g_navNode_6_0_0.addNode('100284','Outsource Management',ssUrlPrefix + 'logistics/america/transportation_mgmt/OutsourceManagement/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_0_2=g_navNode_6_0_0.addNode('100285','Carrier Solutions',ssUrlPrefix + 'logistics/america/transportation_mgmt/CarrierSolutions/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_0_2_0=g_navNode_6_0_0_2.addNode('100287','Find Freight and Post Trucks',ssUrlPrefix + 'logistics/america/transportation_mgmt/CarrierSolutions/FindFreightandPostTrucks/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_0_2_1=g_navNode_6_0_0_2.addNode('100288','Carrier Purchasing Program',ssUrlPrefix + 'logistics/america/transportation_mgmt/CarrierSolutions/CarrierPurchasingProgram/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_0_2_2=g_navNode_6_0_0_2.addNode('100289','Payment Options',ssUrlPrefix + 'logistics/america/transportation_mgmt/CarrierSolutions/PaymentOptions/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_0_3=g_navNode_6_0_0.addNode('100365','Rate Inquiry',ssUrlPrefix + 'logistics/america/transportation_mgmt/RateInquiry/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_1=g_navNode_6_0.addNode('100077','Transloading and Distribution',ssUrlPrefix + 'logistics/america/transloading/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_1_0=g_navNode_6_0_1.addNode('100078','Transloading and Deconsolidation',ssUrlPrefix + 'logistics/america/transloading/trans_deconsol/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_1_1=g_navNode_6_0_1.addNode('100079','Port Drayage',ssUrlPrefix + 'logistics/america/transloading/port_drayage/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_1_2=g_navNode_6_0_1.addNode('100080','Contract Warehousing',ssUrlPrefix + 'logistics/america/transloading/contract_warehouse/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_2=g_navNode_6_0.addNode('100073','Freight Forwarding and Customs House Brokerage',ssUrlPrefix + 'logistics/america/freight_fwd_customs/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_2_0=g_navNode_6_0_2.addNode('100074','Import',ssUrlPrefix + 'logistics/america/freight_fwd_customs/import/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_2_1=g_navNode_6_0_2.addNode('100075','Export',ssUrlPrefix + 'logistics/america/freight_fwd_customs/export/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_2_2=g_navNode_6_0_2.addNode('100076','Customs House Brokerage',ssUrlPrefix + 'logistics/america/freight_fwd_customs/customs_house_brokerage/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_3=g_navNode_6_0.addNode('100081','Supply Chain Management',ssUrlPrefix + 'logistics/america/supply_chain_mgmt/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_3_0=g_navNode_6_0_3.addNode('100082','Transportation Network Management',ssUrlPrefix + 'logistics/america/supply_chain_mgmt/transportation_network/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_3_1=g_navNode_6_0_3.addNode('100083','Supplier Management',ssUrlPrefix + 'logistics/america/supply_chain_mgmt/supplier_management/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_4=g_navNode_6_0.addNode('100084','Schneider Logistics Consulting',ssUrlPrefix + 'logistics/america/supply_chain_advisory/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_4_0=g_navNode_6_0_4.addNode('100085','BIDSMART',ssUrlPrefix + 'logistics/america/supply_chain_advisory/design/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_4_1=g_navNode_6_0_4.addNode('100086','Network Design and Optimization',ssUrlPrefix + 'logistics/america/supply_chain_advisory/transportation_procurement/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_4_2=g_navNode_6_0_4.addNode('100087','Supply Chain Diagnostic',ssUrlPrefix + 'logistics/america/supply_chain_advisory/services/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_5=g_navNode_6_0.addNode('100088','Dictionary of International Freight',ssUrlPrefix + 'logistics/america/DictionaryofInternationalFreight/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_0_6=g_navNode_6_0.addNode('100242','Rate Inquiry',ssUrlPrefix + 'logistics/america/RateInquiry/index.htm','SectionNodeId==100064','SubSectionNodeId==100065');
g_navNode_6_1=g_navNode_6.addNode('100210','International',ssUrlPrefix + 'logistics/International/index.htm','SectionNodeId==100064','SubSectionNodeId==100210');
g_navNode_6_1_0=g_navNode_6_1.addNode('100212','Freight Forwarding and Customs House Brokerage',ssUrlPrefix + 'logistics/International/FreightForwardingandCustomsHouseBrokerage/index.htm','SectionNodeId==100064','SubSectionNodeId==100210');
g_navNode_6_1_1=g_navNode_6_1.addNode('100213','Transloading and Deconsolidation',ssUrlPrefix + 'logistics/International/TransloadingandDeconsolidation/index.htm','SectionNodeId==100064','SubSectionNodeId==100210');
g_navNode_6_1_2=g_navNode_6_1.addNode('100214','Port Drayage',ssUrlPrefix + 'logistics/International/PortDrayage/index.htm','SectionNodeId==100064','SubSectionNodeId==100210');
g_navNode_6_1_3=g_navNode_6_1.addNode('100215','Dictionary of International Freight',ssUrlPrefix + 'logistics/International/DictionaryofInternationalFreight/index.htm','SectionNodeId==100064','SubSectionNodeId==100210');
g_navNode_6_1_4=g_navNode_6_1.addNode('100273','Rate Inquiry',ssUrlPrefix + 'logistics/International/RateInquiry/index.htm','SectionNodeId==100164','SubSectionNodeId==100210');
g_navNode_6_2=g_navNode_6.addNode('100066','China',ssUrlPrefix + 'logistics/asia/index.htm','SectionNodeId==100064','SubSectionNodeId==100066');
g_navNode_6_2_0=g_navNode_6_2.addNode('100123','Transportation Management',ssUrlPrefix + 'logistics/asia/TransportationManagement/index.htm','SectionNodeId==100064','SubSectionNodeId==100066');
g_navNode_6_2_1=g_navNode_6_2.addNode('100124','Contract Logistics',ssUrlPrefix + 'logistics/asia/ContractLogistics/index.htm','SectionNodeId==100064','SubSectionNodeId==100066');
g_navNode_6_2_2=g_navNode_6_2.addNode('100125','Schneider Logistics Consulting',ssUrlPrefix + 'logistics/asia/SupplyChainAdvisoryServices/index.htm','SectionNodeId==100064','SubSectionNodeId==100066');
g_navNode_6_2_3=g_navNode_6_2.addNode('100126','Freight Forwarding',ssUrlPrefix + 'logistics/asia/FreightForwarding/index.htm','SectionNodeId==100064','SubSectionNodeId==100066');
g_navNode_6_3=g_navNode_6.addNode('100211','Logistics Contacts',ssUrlPrefix + 'logistics/LogisticsContacts/index.htm','SectionNodeId==100064','SubSectionNodeId==100211');
g_navNode_7=g_navNode_Root.addNode('100102','About Schneider',ssUrlPrefix + 'About_Schneider/index.htm','SectionNodeId==100102');
g_navNode_7_0=g_navNode_7.addNode('100103','History',ssUrlPrefix + 'About_Schneider/History/index.htm','SectionNodeId==100102');
g_navNode_7_1=g_navNode_7.addNode('100104','Media',ssUrlPrefix + 'About_Schneider/Media/index.htm','SectionNodeId==100102');
g_navNode_7_2=g_navNode_7.addNode('100105','Facts',ssUrlPrefix + 'About_Schneider/Facts/index.htm','SectionNodeId==100102');
g_navNode_7_3=g_navNode_7.addNode('100106','Enterprise Foundation',ssUrlPrefix + 'About_Schneider/Enterprise_Foundation/index.htm','SectionNodeId==100102');
g_navNode_7_4=g_navNode_7.addNode('100107','Schneider National Foundation',ssUrlPrefix + 'About_Schneider/Schneider_Foundation/index.htm','SectionNodeId==100102');
g_navNode_8=g_navNode_Root.addNode('100108','News and Events',ssUrlPrefix + 'news/index.htm','SectionNodeId==100108');
g_navNode_8_0=g_navNode_8.addNode('100109','Schneider News',ssUrlPrefix + 'news/News/index.htm','SectionNodeId==100108','secondaryUrlVariableField==region4');
g_navNode_8_1=g_navNode_8.addNode('100110','Schneider News Archive',ssUrlPrefix + 'news/News_Archive/index.htm','IsArchiveSection==TRUE','SectionNodeId==100108','secondaryUrlVariableField==region4');
g_navNode_8_2=g_navNode_8.addNode('100111','Industry News',ssUrlPrefix + 'news/Industry_News/index.htm','SectionNodeId==100108');
g_navNode_8_3=g_navNode_8.addNode('100112','Industry News Archive',ssUrlPrefix + 'news/Industry_News_Archive/index.htm','IsArchiveSection==TRUE','SectionNodeId==100108');
g_navNode_8_4=g_navNode_8.addNode('100113','Events',ssUrlPrefix + 'news/Events/index.htm','SectionNodeId==100108');
g_navNode_8_5=g_navNode_8.addNode('100114','Events Archive',ssUrlPrefix + 'news/Events_Archive/index.htm','IsArchiveSection==TRUE','SectionNodeId==100108');
g_navNode_10=g_navNode_Root.addNode('100116','Register',ssUrlPrefix + 'register/index.htm','SectionNodeId==100116');
g_navNode_49=g_navNode_Root.addNode('100178','Sustainability',ssUrlPrefix + 'Sustainability/index.htm','SectionNodeId==100178');
g_navNode_49_0=g_navNode_49.addNode('100187','Environmental',ssUrlPrefix + 'Sustainability/Environmental/index.htm','SectionNodeId==100178');
g_navNode_49_0_0=g_navNode_49_0.addNode('100206','Fuel Conservation',ssUrlPrefix + 'Sustainability/Environmental/FuelConservation/index.htm','SectionNodeId==100178');
g_navNode_49_0_1=g_navNode_49_0.addNode('100243','Air Quality',ssUrlPrefix + 'Sustainability/Environmental/AirQuality/index.htm','SectionNodeId==100178');
g_navNode_49_0_2=g_navNode_49_0.addNode('100258','Energy Conservation',ssUrlPrefix + 'Sustainability/Environmental/EnergyConservation/index.htm','SectionNodeId==100178');
g_navNode_49_1=g_navNode_49.addNode('100192','Social Responsibility',ssUrlPrefix + 'Sustainability/SocialResponsibility/index.htm','SectionNodeId==100178');
g_navNode_49_1_0=g_navNode_49_1.addNode('100199','Safety',ssUrlPrefix + 'Sustainability/SocialResponsibility/Safety/index.htm','SectionNodeId==100178');
g_navNode_49_1_1=g_navNode_49_1.addNode('100203','Charitable Giving',ssUrlPrefix + 'Sustainability/SocialResponsibility/CharitableGiving/index.htm','SectionNodeId==100178');
g_navNode_49_1_2=g_navNode_49_1.addNode('100204','Military Support',ssUrlPrefix + 'Sustainability/SocialResponsibility/MilitarySupport/index.htm','SectionNodeId==100178');
g_navNode_49_2=g_navNode_49.addNode('100195','Financial',ssUrlPrefix + 'Sustainability/Financial/index.htm','SectionNodeId==100178');
g_navNode_52=g_navNode_Root.addNode('100277','Brokerage',ssUrlPrefix + 'Brokerage/index.htm','SectionNodeId==100277');
g_navNode_52_0=g_navNode_52.addNode('100278','Truckload',ssUrlPrefix + 'Brokerage/Truckload/index.htm','SectionNodeId==100277');
g_navNode_52_1=g_navNode_52.addNode('100279','Intermodal',ssUrlPrefix + 'Brokerage/Intermodal/index.htm','SectionNodeId==100277');
g_navNode_52_2=g_navNode_52.addNode('100280','Refrigerated',ssUrlPrefix + 'Brokerage/Refrigerated/index.htm','SectionNodeId==100277');
g_navNode_52_3=g_navNode_52.addNode('100281','Flatbed',ssUrlPrefix + 'Brokerage/FlatBed/index.htm','SectionNodeId==100277');
g_navNode_52_4=g_navNode_52.addNode('100282','Less-Than-Truckload',ssUrlPrefix + 'Brokerage/LTL/index.htm','SectionNodeId==100277');
g_navNode_52_5=g_navNode_52.addNode('100283','Carrier Solutions',ssUrlPrefix + 'Brokerage/CarrierServices/index.htm','SectionNodeId==100277');
g_navNode_52_6=g_navNode_52.addNode('100366','Payment Resolution',ssUrlPrefix + 'Brokerage/PaymentResolution/index.htm');
