/////////////////////////////////////////////////////////////////////////////
// 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('1','Home',ssUrlPrefix + 'index.htm',null);
g_navNode_1=g_navNode_Root.addNode('ss_industries','Industries',ssUrlPrefix + 'Industries/index.htm','redirectUrl==ss_ind_IndustriesOverview','registrationRequired==FALSE','secondaryUrlVariableField==region1');
g_navNode_1_0=g_navNode_1.addNode('ss_ind_IndustriesOverview','Industries Overview',ssUrlPrefix + 'Industries/IndustriesOverview/index.htm');
g_navNode_1_1=g_navNode_1.addNode('ss_ind_education','Education',ssUrlPrefix + 'Industries/Education/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==Education','secondaryUrlVariableField==region1');
g_navNode_1_2=g_navNode_1.addNode('ss_ind_finance','Finance',ssUrlPrefix + 'Industries/Finance/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==Finance','secondaryUrlVariableField==region1');
g_navNode_1_3=g_navNode_1.addNode('ss_ind_foodbeverage','Food / Beverage',ssUrlPrefix + 'Industries/FoodBeverage/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==Food / Beverage','secondaryUrlVariableField==region1');
g_navNode_1_4=g_navNode_1.addNode('ss_ind_government','Government',ssUrlPrefix + 'Industries/Government/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==Government','secondaryUrlVariableField==region1');
g_navNode_1_5=g_navNode_1.addNode('ss_ind_healthpharma','Health Care',ssUrlPrefix + 'Industries/HealthCare/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==Healthcare','secondaryUrlVariableField==region1');
g_navNode_1_10=g_navNode_1.addNode('ss_ind_transportation','Transportation',ssUrlPrefix + 'Industries/Transportation/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==Transportation','secondaryUrlVariableField==region1');
g_navNode_1_13=g_navNode_1.addNode('ss_ind_WindPower','Wind Energy',ssUrlPrefix + 'Industries/WindEnergy/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==Wind Energy','secondaryUrlVariableField==region1');
g_navNode_1_14=g_navNode_1.addNode('ss_ind_SolarEnergy','Solar Energy',ssUrlPrefix + 'Industries/SolarEnergy/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==Solar Energy','secondaryUrlVariableField==region1');
g_navNode_2=g_navNode_Root.addNode('ss_solutions','Solutions',ssUrlPrefix + 'Solutions/index.htm','redirectUrl==ss_sol_SolutionsOverview','secondaryUrlVariableField==region1');
g_navNode_2_0=g_navNode_2.addNode('ss_sol_SolutionsOverview','Solutions Overview',ssUrlPrefix + 'Solutions/SolutionsOverview/index.htm');
g_navNode_2_1=g_navNode_2.addNode('ss_sol_datacenter','Data Center',ssUrlPrefix + 'Solutions/DataCenter/index.htm','dynamicQuery==xCustomerSolutions \x3csubstring\x3e \x60Data Center\x60','searchFieldName==xCustomerSolutions','searchFieldValue==Data Center','secondaryUrlVariableField==region1','showNoQueryNav==FALSE');
g_navNode_2_2=g_navNode_2.addNode('ss_sol_connectedbuildings','Connected Buildings/Enterprise',ssUrlPrefix + 'Solutions/ConnectedBuildings/index.htm','dontDisplayRHS==FALSE','searchFieldName==xCustomerSolutions','searchFieldValue==Connected Buildings','secondaryUrlVariableField==region1');
g_navNode_2_6=g_navNode_2.addNode('ss_sol_industrialauto','Industrial Automation',ssUrlPrefix + 'Solutions/IndustrialAutomation/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==Industrial / Construction','secondaryUrlVariableField==region1');
g_navNode_2_7=g_navNode_2.addNode('ss_sol_mro','MRO',ssUrlPrefix + 'Solutions/MRO/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==MRO / Facilities','secondaryUrlVariableField==region1');
g_navNode_2_8=g_navNode_2.addNode('ss_sol_oem','OEM',ssUrlPrefix + 'Solutions/OEM/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==OEM / Manufacturing','secondaryUrlVariableField==region1');
g_navNode_3=g_navNode_Root.addNode('ss_Services','Services',ssUrlPrefix + 'Services/index.htm','redirectUrl==ss_svc_ServicesOverview');
g_navNode_3_0=g_navNode_3.addNode('ss_svc_ServicesOverview','Services Overview',ssUrlPrefix + 'Services/ServicesOverview/index.htm','iframeSrcUrl==http\x3a//www2.panduit.com/zFlash/ServicesLandingPage/default.html');
g_navNode_3_6=g_navNode_3.addNode('ss_svc_ppsa','The Panduit Advisory Services Advantage',ssUrlPrefix + 'Services/ThePanduitAdvisoryServicesAdvantage/index.htm');
g_navNode_3_6_0=g_navNode_3_6.addNode('ss_svc_ppsa_ourdifference','Our Difference',ssUrlPrefix + 'Services/ThePanduitAdvisoryServicesAdvantage/OurDifference/index.htm');
g_navNode_3_6_1=g_navNode_3_6.addNode('ss_svc_ppsa_UPIApproach','UPI Approach',ssUrlPrefix + 'Services/ThePanduitAdvisoryServicesAdvantage/UPIApproach/index.htm');
g_navNode_3_6_2=g_navNode_3_6.addNode('ss_svc_ppsa_OurCommitment','Our Commitment',ssUrlPrefix + 'Services/ThePanduitAdvisoryServicesAdvantage/OurCommitment/index.htm');
g_navNode_3_6_3=g_navNode_3_6.addNode('ss_svc_ppsa_OurPeople','Our People',ssUrlPrefix + 'Services/ThePanduitAdvisoryServicesAdvantage/OurPeople/index.htm');
g_navNode_3_6_4=g_navNode_3_6.addNode('ss_svc_ppsa_AlliancePartners','Our Alliance Partners',ssUrlPrefix + 'Services/ThePanduitAdvisoryServicesAdvantage/OurAlliancePartners/index.htm');
g_navNode_3_6_5=g_navNode_3_6.addNode('ss_svc_ppsa_OurOfferings','Our Offerings',ssUrlPrefix + 'Services/ThePanduitAdvisoryServicesAdvantage/OurOfferings/index.htm');
g_navNode_3_7=g_navNode_3.addNode('ss_svc_dcc','Data Center Challenges',ssUrlPrefix + 'Services/DataCenterChallenges/index.htm','iframeSrcUrl==http\x3a//www2.panduit.com/SocialMedia/Twitter/AdvisoryServices/index-small.html');
g_navNode_3_7_0=g_navNode_3_7.addNode('ss_svc_dcc_ail','Asset Inventory Location',ssUrlPrefix + 'Services/DataCenterChallenges/AssetInventoryLocation/index.htm');
g_navNode_3_7_1=g_navNode_3_7.addNode('ss_svc_dcc_Consolidation','Consolidation',ssUrlPrefix + 'Services/DataCenterChallenges/Consolidation/index.htm');
g_navNode_3_7_2=g_navNode_3_7.addNode('ss_svc_dcc_icp','Cooling Performance',ssUrlPrefix + 'Services/DataCenterChallenges/ImprovingCoolingPerformance/index.htm');
g_navNode_3_7_3=g_navNode_3_7.addNode('ss_svc_dcc_na','Network Architecture',ssUrlPrefix + 'Services/DataCenterChallenges/NetworkArchitecture/index.htm');
g_navNode_3_7_4=g_navNode_3_7.addNode('ss_svc_dcc_op','Optimizing Performance',ssUrlPrefix + 'Services/DataCenterChallenges/OptimizingPerformance/index.htm');
g_navNode_3_7_5=g_navNode_3_7.addNode('ss_svc_dcc_virt','Virtualization',ssUrlPrefix + 'Services/DataCenterChallenges/Virtualization/index.htm');
g_navNode_3_8=g_navNode_3.addNode('ss_svc_as','Advisory Services',ssUrlPrefix + 'Services/AdvisoryServices/index.htm');
g_navNode_3_8_0=g_navNode_3_8.addNode('ss_svc_as_meth','Methodology',ssUrlPrefix + 'Services/AdvisoryServices/Methodology/index.htm');
g_navNode_3_8_1=g_navNode_3_8.addNode('ss_svc_as_dc','Data Center',ssUrlPrefix + 'Services/AdvisoryServices/DataCenter/index.htm','redirectUrl==ss_svc_as_dc_Assessments');
g_navNode_3_8_1_0=g_navNode_3_8_1.addNode('ss_svc_as_dc_Assessments','Assessments',ssUrlPrefix + 'Services/AdvisoryServices/DataCenter/Assessments/index.htm');
g_navNode_3_8_1_0_0=g_navNode_3_8_1_0.addNode('ss_svc_as_dc_a_pie','Physical Infrastructure Evaluation',ssUrlPrefix + 'Services/AdvisoryServices/DataCenter/Assessments/PhysicalInfrastructureEvaluation/index.htm');
g_navNode_3_8_1_0_1=g_navNode_3_8_1_0.addNode('ss_svc_as_dc_a_Thermal','Thermal',ssUrlPrefix + 'Services/AdvisoryServices/DataCenter/Assessments/Thermal/index.htm');
g_navNode_3_8_1_0_3=g_navNode_3_8_1_0.addNode('ss_svc_as_dc_a_cpr','Cabling, Pathways and Racks',ssUrlPrefix + 'Services/AdvisoryServices/DataCenter/Assessments/CablingPathwaysandRacks/index.htm');
g_navNode_3_8_1_0_4=g_navNode_3_8_1_0.addNode('ss_svc_as_dc_a_tg','Telecommunications Grounding',ssUrlPrefix + 'Services/AdvisoryServices/DataCenter/Assessments/TelecommunicationsGrounding/index.htm');
g_navNode_3_8_1_1=g_navNode_3_8_1.addNode('ss_svc_as_dc_Design','Design',ssUrlPrefix + 'Services/AdvisoryServices/DataCenter/Design/index.htm');
g_navNode_3_8_1_3=g_navNode_3_8_1.addNode('ss_svc_as_dc_pim','Physical Infrastructure Management',ssUrlPrefix + 'Services/AdvisoryServices/DataCenter/PhysicalInfrastructureManagement/index.htm');
g_navNode_3_9=g_navNode_3.addNode('ss_svc_fi','Fresh Insight',ssUrlPrefix + 'Services/FreshInsight/index.htm');
g_navNode_3_9_0=g_navNode_3_9.addNode('ss_svc_fi_Research','Research',ssUrlPrefix + 'Services/FreshInsight/Research/index.htm','iframeSrcUrl==http\x3a//www2.panduit.com/CollateralListing/User/Index/1');
g_navNode_3_9_0_0=g_navNode_3_9_0.addNode('ss_svc_fi_r_Articles','Articles',ssUrlPrefix + 'Services/FreshInsight/Research/Articles/index.htm');
g_navNode_3_9_0_2=g_navNode_3_9_0.addNode('ss_svc_fi_r_DetailSheets','Detail Sheets',ssUrlPrefix + 'Services/FreshInsight/Research/DetailSheets/index.htm');
g_navNode_3_9_1=g_navNode_3_9.addNode('ss_svc_fi_Learn','Learn',ssUrlPrefix + 'Services/FreshInsight/Learn/index.htm','redirectUrl==ss_svc_fi_l_Videos');
g_navNode_3_9_1_2=g_navNode_3_9_1.addNode('ss_svc_fi_l_Videos','Videos',ssUrlPrefix + 'Services/FreshInsight/Learn/Videos/index.htm');
g_navNode_3_9_2=g_navNode_3_9.addNode('ss_svc_fi_Collaborate','Collaborate',ssUrlPrefix + 'Services/FreshInsight/Collaborate/index.htm','redirectUrl==ss_svc_fi_c_Blog');
g_navNode_3_9_2_0=g_navNode_3_9_2.addNode('ss_svc_fi_c_Blog','Blog',ssUrlPrefix + 'Services/FreshInsight/Collaborate/Blog/index.htm');
g_navNode_3_9_2_1=g_navNode_3_9_2.addNode('ss_svc_fi_c_Twitter','Twitter',ssUrlPrefix + 'Services/FreshInsight/Collaborate/Twitter/index.htm','iframeSrcUrl==http\x3a//www2.panduit.com/SocialMedia/Twitter/AdvisoryServices/index-full.html');
g_navNode_3_9_2_2=g_navNode_3_9_2.addNode('ss_svc_fi_c_ContactUs','Contact Us',ssUrlPrefix + 'Services/FreshInsight/Collaborate/ContactUs/index.htm');
g_navNode_4=g_navNode_Root.addNode('ss_software','Software',ssUrlPrefix + 'Software/index.htm','redirectUrl==ss_sft_PIM');
g_navNode_4_0=g_navNode_4.addNode('ss_sft_PIM','PIM Software',ssUrlPrefix + 'Software/PIMSoftware2/index.htm','redirectUrl==ss_prod_physicalinfrastructure');
g_navNode_5=g_navNode_Root.addNode('ss_products','Products',ssUrlPrefix + 'Products/index.htm','redirectUrl==ss_prod_productoverviews');
g_navNode_5_0=g_navNode_5.addNode('ss_prod_productoverviews','Products Overview',ssUrlPrefix + 'Products/ProductOverviews/index.htm');
g_navNode_5_0_0=g_navNode_5_0.addNode('ss_prod_cabinetsrackscables','Cabinets, Racks and Cable Management',ssUrlPrefix + 'Products/ProductOverviews/CabinetsRacksCables/index.htm','productClassId==986','searchFieldName==xProductClassification','searchFieldValue==986','secondaryUrlVariableField==region1');
g_navNode_5_0_1=g_navNode_5_0.addNode('ss_prod_cablemanagement','Cable Management',ssUrlPrefix + 'Products/ProductOverviews/CableManagement/index.htm','productClassId==311','searchFieldName==xProductClassification','searchFieldValue==311','secondaryUrlVariableField==region1');
g_navNode_5_0_2=g_navNode_5_0.addNode('ss_prod_cabtiemontsecdevice','Cable Tie Mounts and Securing Devices',ssUrlPrefix + 'Products/ProductOverviews/CableTieMountsandSecuringDevices/index.htm','productClassId==2434','searchFieldName==xProductClassification','searchFieldValue==2434','secondaryUrlVariableField==region1');
g_navNode_5_0_3=g_navNode_5_0.addNode('ss_prod_cableties','Cable Ties',ssUrlPrefix + 'Products/ProductOverviews/CableTies/index.htm','productClassId==1002','searchFieldName==xProductClassification','searchFieldValue==1002','secondaryUrlVariableField==region1');
g_navNode_5_0_4=g_navNode_5_0.addNode('ss_prod_coppersolutions','Copper Systems',ssUrlPrefix + 'Products/ProductOverviews/CopperSolutions/index.htm','productClassId==1845','searchFieldName==xProductClassification','searchFieldValue==1845','secondaryUrlVariableField==region1');
g_navNode_5_0_5=g_navNode_5_0.addNode('ss_prod_fibersystems','Fiber Optic Systems',ssUrlPrefix + 'Products/ProductOverviews/FiberSystems/index.htm','productClassId==964','searchFieldName==xProductClassification','searchFieldValue==964','secondaryUrlVariableField==region1');
g_navNode_5_0_6=g_navNode_5_0.addNode('ss_groundingsystem','Grounding System',ssUrlPrefix + 'Products/ProductOverviews/GroundingSystem/index.htm','productClassId==1050','searchFieldName==xProductClassification','searchFieldValue==1050','secondaryUrlVariableField==region1');
g_navNode_5_0_7=g_navNode_5_0.addNode('ss_prod_heatshrinkabrasionprot','Heat Shrink \x26 Abrasion Prot',ssUrlPrefix + 'Products/ProductOverviews/HeatShrinkAbrasionProt/index.htm','productClassId==456','searchFieldName==xProductClassification','searchFieldValue==456','secondaryUrlVariableField==region1');
g_navNode_5_0_8=g_navNode_5_0.addNode('ss_idandlabelingsystems','Identification and Labeling Systems',ssUrlPrefix + 'Products/ProductOverviews/IdentificationandLabelingSystems/index.htm','productClassId==1030','searchFieldName==xProductClassification','searchFieldValue==1030','secondaryUrlVariableField==region1');
g_navNode_5_0_9=g_navNode_5_0.addNode('ss_prod_installationtools','Installation Tools',ssUrlPrefix + 'Products/ProductOverviews/InstallationTools/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1');
g_navNode_5_0_10=g_navNode_5_0.addNode('ss_prod_locktagoutsafetynetsec','Lockout/Tagout, Safety \x26 Network Security Solutions',ssUrlPrefix + 'Products/ProductOverviews/LockoutTagoutSafetyNetworkSecuritySolutions/index.htm','productClassId==1034','searchFieldName==xProductClassification','searchFieldValue==1034','secondaryUrlVariableField==region1');
g_navNode_5_0_11=g_navNode_5_0.addNode('ss_prod_prodnetkeynetworkcomp','NetKey Network Components',ssUrlPrefix + 'Products/ProductOverviews/NetKeyNetworkComponents/index.htm','productClassId==1042','searchFieldName==xProductClassification','searchFieldValue==1042','secondaryUrlVariableField==region1');
g_navNode_5_0_12=g_navNode_5_0.addNode('ss_prod_outletsystems','Outlet Systems',ssUrlPrefix + 'Products/ProductOverviews/OutletSystems/index.htm','productClassId==24','searchFieldName==xProductClassification','searchFieldValue==24','secondaryUrlVariableField==region1');
g_navNode_5_0_13=g_navNode_5_0.addNode('ss_prod_overundercablerouting','Overhead / Underfloor Cable Routing',ssUrlPrefix + 'Products/ProductOverviews/OverheadUnderfloorCableRouting/index.htm','productClassId==111','searchFieldName==xProductClassification','searchFieldValue==111','secondaryUrlVariableField==region1');
g_navNode_5_0_14=g_navNode_5_0.addNode('ss_prod_physicalinfrastructure','Physical Infrastructure Manangement',ssUrlPrefix + 'Products/ProductOverviews/PhysicalInfrastructureManagement/index.htm','productClassId==1152','searchFieldName==xProductClassification','searchFieldValue==1152','secondaryUrlVariableField==region1');
g_navNode_5_0_15=g_navNode_5_0.addNode('ss_prod_powerenvmgmt','Power and Environmental Management',ssUrlPrefix + 'Products/ProductOverviews/PowerandEnvironmentalManagement/index.htm','productClassId==2280','searchFieldName==xProductClassification','searchFieldValue==2280','secondaryUrlVariableField==region1');
g_navNode_5_0_16=g_navNode_5_0.addNode('ss_prod_powerconnectors','Power Connectors',ssUrlPrefix + 'Products/ProductOverviews/PowerConnectors/index.htm','productClassId==1047','searchFieldName==xProductClassification','searchFieldValue==1047','secondaryUrlVariableField==region1');
g_navNode_5_0_17=g_navNode_5_0.addNode('ss_prod_poweroverethersys','Power Over Ethernet System',ssUrlPrefix + 'Products/ProductOverviews/PowerOverEthernetSystem/index.htm','productClassId==1885','searchFieldName==xProductClassification','searchFieldValue==1885','secondaryUrlVariableField==region1');
g_navNode_5_0_18=g_navNode_5_0.addNode('ss_prod_steelcabletiespermid','Stainless Steel Cable Ties, Permanent Identification',ssUrlPrefix + 'Products/ProductOverviews/StainlessSteelCableTiesPermanentIdentification/index.htm','productClassId==1004','searchFieldName==xProductClassification','searchFieldValue==1004','secondaryUrlVariableField==region1');
g_navNode_5_0_19=g_navNode_5_0.addNode('ss_prod_surfaceracewaysystems','Surface Raceway Systems',ssUrlPrefix + 'Products/ProductOverviews/SurfaceRacewaySystems/index.htm','productClassId==82','searchFieldName==xProductClassification','searchFieldValue==82','secondaryUrlVariableField==region1');
g_navNode_5_0_20=g_navNode_5_0.addNode('ss_prod_toolkits','Tool Kits',ssUrlPrefix + 'Products/ProductOverviews/ToolKits/index.htm','productClassId==2198','searchFieldName==xProductClassification','searchFieldValue==2198','secondaryUrlVariableField==region1');
g_navNode_5_0_21=g_navNode_5_0.addNode('ss_prod_terminals','Terminals',ssUrlPrefix + 'Products/ProductOverviews/Terminals/index.htm','productClassId==1037','searchFieldName==xProductClassification','searchFieldValue==1037','secondaryUrlVariableField==region1');
g_navNode_5_0_22=g_navNode_5_0.addNode('ss_prod_wirelesssystem','Wireless System',ssUrlPrefix + 'Products/ProductOverviews/WirelessSystem/index.htm','productClassId==1292','searchFieldName==xProductClassification','searchFieldValue==1292','secondaryUrlVariableField==region1');
g_navNode_5_0_23=g_navNode_5_0.addNode('ss_prod_wiringduct','Wiring Duct',ssUrlPrefix + 'Products/ProductOverviews/WiringDuct/index.htm','productClassId==1006','searchFieldName==xProductClassification','searchFieldValue==1006','secondaryUrlVariableField==region1');
g_navNode_5_0_24=g_navNode_5_0.addNode('ss_prod_zonecablingsystem','Zone Cabling System',ssUrlPrefix + 'Products/ProductOverviews/ZoneCablingSystem/index.htm','productClassId==431','searchFieldName==xProductClassification','searchFieldValue==431','secondaryUrlVariableField==region1');
g_navNode_5_1=g_navNode_5.addNode('ss_prod_ProductSystems','Product Systems',ssUrlPrefix + 'Products/ProductSystems/index.htm','secondaryUrlVariableField==region1');
g_navNode_5_1_0=g_navNode_5_1.addNode('ss_prod_PanelSystems','Panel Systems',ssUrlPrefix + 'Products/ProductSystems/PanelSystems/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==Product - Panel Systems');
g_navNode_5_1_1=g_navNode_5_1.addNode('ss_prod_PowerSystems','Power Systems',ssUrlPrefix + 'Products/ProductSystems/PowerSystems/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==Product - Power Systems','secondaryUrlVariableField==region1');
g_navNode_5_1_2=g_navNode_5_1.addNode('ss_prod_SafetySystems','Safety Systems',ssUrlPrefix + 'Products/ProductSystems/SafetySystems/index.htm','searchFieldName==xCustomerSolutions','searchFieldValue==Product - Safety Systems','secondaryUrlVariableField==region1');
g_navNode_5_2=g_navNode_5.addNode('ss_prod_billofmaterials','Bill of Materials',ssUrlPrefix + 'Products/BillofMaterials/index.htm');
g_navNode_5_4=g_navNode_5.addNode('ss_prod_favoriteproductslist','Favorite Products List',ssUrlPrefix + 'Products/FavoriteProductsList/index.htm');
g_navNode_5_6=g_navNode_5.addNode('ss_prod_FAQ','FAQ',ssUrlPrefix + 'Products/FAQ/index.htm','openInNewWindow==TRUE');
g_navNode_6=g_navNode_Root.addNode('ss_partners','Partners',ssUrlPrefix + 'Partners/index.htm','redirectUrl==ss_part_PartnersOverview','showNoQueryNav==TRUE');
g_navNode_6_0=g_navNode_6.addNode('ss_part_PartnersOverview','Partners Overview',ssUrlPrefix + 'Partners/PartnersOverview/index.htm','secondaryUrlVariableField==region1','showNoQueryNav==TRUE');
g_navNode_6_1=g_navNode_6.addNode('ss_part_CustomerCommunity','The Value of Partnering',ssUrlPrefix + 'Partners/TheValueOfPartnering/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1','showNoQueryNav==TRUE');
g_navNode_6_2=g_navNode_6.addNode('ss_part_ConsultantPartners','Consultant Partners',ssUrlPrefix + 'Partners/ConsultantPartners/index.htm','dontDisplayRHS==TRUE','showNoQueryNav==TRUE');
g_navNode_6_3=g_navNode_6.addNode('ss_part_distributors','Business Partner Program',ssUrlPrefix + 'Partners/BusinessPartnerProgram/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1','showNoQueryNav==TRUE');
g_navNode_6_6=g_navNode_6.addNode('ss_part_ExistingMemberLogin','Existing Member Login',ssUrlPrefix + 'Partners/ExistingMemberLogin/index.htm');
g_navNode_6_7=g_navNode_6.addNode('ss_part_ForgotIDPassword','Forgot ID Password',ssUrlPrefix + 'Partners/ForgotIDPassword/index.htm','iframeSrcUrl==http\x3a//www5.panduit.com/xUSPP/forgotinfo.asp');
g_navNode_6_8=g_navNode_6.addNode('ss_part_ApplyToBeAMember','Apply to become a Member',ssUrlPrefix + 'Partners/ApplytobecomeaMember/index.htm','iframeSrcUrl==http\x3a//www5.panduit.com/xUSPP/extTRF.asp');
g_navNode_6_9=g_navNode_6.addNode('ss_part_LocateAPartner','Locate A Partner',ssUrlPrefix + 'Partners/LocateAPartner/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1','showNoQueryNav==FALSE');
g_navNode_6_10=g_navNode_6.addNode('ss_dist_logintopanserve','Login to Pan-Serve',ssUrlPrefix + 'Partners/LogintoPan-Serve/index.htm');
g_navNode_6_11=g_navNode_6.addNode('ss_part_signupforpanserve','Sign Up for Access to Pan-Serve',ssUrlPrefix + 'Partners/SignUpforAccesstoPanserve/index.htm');
g_navNode_7=g_navNode_Root.addNode('ss_support','Support',ssUrlPrefix + 'Support/index.htm','redirectUrl==ss_sup_SupportOverview');
g_navNode_7_0=g_navNode_7.addNode('ss_sup_SupportOverview','Support Overview',ssUrlPrefix + 'Support/SupportOverview/index.htm');
g_navNode_7_1=g_navNode_7.addNode('ss_sup_customerservice','Customer Service',ssUrlPrefix + 'Support/CustomerService/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1','showNoQueryNav==FALSE');
g_navNode_7_1_0=g_navNode_7_1.addNode('ss_sup_contactus','Contact Us',ssUrlPrefix + 'Support/CustomerService/ContactUs/index.htm','dontDisplayRHS==TRUE');
g_navNode_7_2=g_navNode_7.addNode('ss_sup_locatedistributor','Locate Distributor',ssUrlPrefix + 'Support/LocateDistributor/index.htm','iframeSrcUrl==http\x3a//hosted.where2getit.com/panduit/start.html');
g_navNode_7_4=g_navNode_7.addNode('ss_sup_WhitePapers','White Papers',ssUrlPrefix + 'Support/WhitePapers/index.htm','redirectUrl==ss_au_WhitePapers');
g_navNode_7_5=g_navNode_7.addNode('ss_sup_TechnicalPapers','Technical Papers',ssUrlPrefix + 'Support/TechnicalPapers/index.htm');
g_navNode_7_6=g_navNode_7.addNode('ss_sup_software','Software, Firmware \x26 Printers',ssUrlPrefix + 'Support/Software/index.htm','secondaryUrlVariableField==region1');
g_navNode_7_7=g_navNode_7.addNode('ss_sup_productreg','Product Registration',ssUrlPrefix + 'Support/ProductRegistration/index.htm');
g_navNode_7_9=g_navNode_7.addNode('ss_sup_CostCalculators','Cost Savings Calculators',ssUrlPrefix + 'Support/CostSavingsCalculators/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1');
g_navNode_7_12=g_navNode_7.addNode('ss_sol_FAQ','FAQ',ssUrlPrefix + 'Support/FAQ/index.htm','openInNewWindow==TRUE');
g_navNode_7_13=g_navNode_7.addNode('ss_sup_designtools','Design Tools',ssUrlPrefix + 'Support/DesignTools/index.htm');
g_navNode_7_15=g_navNode_7.addNode('ss_sup_MNSTechSupport','PIM/PVIQ Systems Support',ssUrlPrefix + 'Support/MNSTechSupport/index.htm','iframeSrcUrl==https\x3a//ebsapp.panduit.com\x3a8000/OA_HTML/panduit_jtflogin.jsp');
g_navNode_8=g_navNode_Root.addNode('ss_aboutus','About Us',ssUrlPrefix + 'AboutUs/index.htm','redirectUrl==ss_au_AboutPanduit');
g_navNode_8_0=g_navNode_8.addNode('ss_au_AboutPanduit','About Panduit',ssUrlPrefix + 'AboutUs/AboutPanduit/index.htm');
g_navNode_8_1=g_navNode_8.addNode('ss_au_MediaRoom','MediaRoom',ssUrlPrefix + 'AboutUs/MediaRoom/index.htm','showNoQueryNav==TRUE');
g_navNode_8_1_0=g_navNode_8_1.addNode('ss_au_pressreleases','Press Releases',ssUrlPrefix + 'AboutUs/MediaRoom/PressReleases/index.htm','secondaryUrlVariableField==region1','showNoQueryNav==TRUE');
g_navNode_8_1_1=g_navNode_8_1.addNode('ss_au_MediaKit','MediaKit',ssUrlPrefix + 'AboutUs/MediaRoom/MediaKit/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1');
g_navNode_8_1_2=g_navNode_8_1.addNode('ss_au_CaseStudies','Case Studies',ssUrlPrefix + 'AboutUs/MediaRoom/CaseStudies/index.htm');
g_navNode_8_1_3=g_navNode_8_1.addNode('ss_au_Article','Article',ssUrlPrefix + 'AboutUs/MediaRoom/Article/index.htm');
g_navNode_8_1_4=g_navNode_8_1.addNode('ss_au_WhitePapers','White Papers',ssUrlPrefix + 'AboutUs/MediaRoom/WhitePapers/index.htm');
g_navNode_8_1_5=g_navNode_8_1.addNode('ss_au_MediaContacts','Media Contacts',ssUrlPrefix + 'AboutUs/MediaRoom/MediaContacts/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1');
g_navNode_8_1_6=g_navNode_8_1.addNode('ss_au_ImageGallery','Image Gallery',ssUrlPrefix + 'AboutUs/MediaRoom/ImageGallery/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1');
g_navNode_8_3=g_navNode_8.addNode('ss_au_events','Events',ssUrlPrefix + 'AboutUs/Events/index.htm','eventsCalendarFilter==Panduit.com','secondaryUrlVariableField==region1');
g_navNode_8_4=g_navNode_8.addNode('ss_au_Webinars','Webinars',ssUrlPrefix + 'AboutUs/Webinars/index.htm','dontDisplayRHS==TRUE','showNoQueryNav==TRUE');
g_navNode_8_5=g_navNode_8.addNode('ss_au_quality','Quality',ssUrlPrefix + 'AboutUs/Quality/index.htm','dontDisplayRHS==TRUE');
g_navNode_8_6=g_navNode_8.addNode('ss_au_environmental','Environmental',ssUrlPrefix + 'AboutUs/Environmental/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1','showNoQueryNav==TRUE');
g_navNode_8_6_0=g_navNode_8_6.addNode('ss_au_rohs','RoHS',ssUrlPrefix + 'AboutUs/Environmental/RoHS/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1');
g_navNode_8_6_2=g_navNode_8_6.addNode('ss_au_msds','MSDS',ssUrlPrefix + 'AboutUs/Environmental/MSDS/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1');
g_navNode_8_7=g_navNode_8.addNode('ss_au_privacypolicy','Privacy Policy',ssUrlPrefix + 'AboutUs/PrivacyPolicy/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1');
g_navNode_8_9=g_navNode_8.addNode('ss_careers','Careers',ssUrlPrefix + 'AboutUs/Careers/index.htm','dontDisplayRHS==TRUE','redirectUrl==ss_car_CareersOverview','showNoQueryNav==TRUE');
g_navNode_8_9_0=g_navNode_8_9.addNode('ss_car_CareersOverview','Careers Overview',ssUrlPrefix + 'AboutUs/Careers/CareersOverview/index.htm','dontDisplayRHS==TRUE','showNoQueryNav==TRUE');
g_navNode_8_9_1=g_navNode_8_9.addNode('ss_car_CareerOpportunities','Career Opportunities',ssUrlPrefix + 'AboutUs/Careers/CareerOpportunities/index.htm','iframeSrcUrl==http\x3a//www5.panduit.com/WebApps/Careers/jobsearch.asp');
g_navNode_8_9_2=g_navNode_8_9.addNode('ss_car_coop_ops','Co-Op Opportunities',ssUrlPrefix + 'AboutUs/Careers/CoOpOpportunities/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1');
g_navNode_8_9_4=g_navNode_8_9.addNode('ss_car_submitresume','Submit Resume',ssUrlPrefix + 'AboutUs/Careers/SubmitResume/index.htm','dontDisplayRHS==TRUE','iframeSrcUrl==http\x3a//www5.panduit.com/WebApps/Careers/resume_form.asp');
g_navNode_8_9_5=g_navNode_8_9.addNode('ss_car_careerdev','Career Development',ssUrlPrefix + 'AboutUs/Careers/CareerDevelopment/index.htm','dontDisplayRHS==TRUE');
g_navNode_8_9_6=g_navNode_8_9.addNode('ss_car_benefits','Benefits',ssUrlPrefix + 'AboutUs/Careers/Benefits/index.htm','dontDisplayRHS==TRUE','secondaryUrlVariableField==region1');
g_navNode_8_10=g_navNode_8.addNode('ss_au_legalinfo','LegalInformation',ssUrlPrefix + 'AboutUs/LegalInformation/index.htm','secondaryUrlVariableField==region1');
g_navNode_8_11=g_navNode_8.addNode('ss_au_companyinformation','Company Information',ssUrlPrefix + 'AboutUs/CompanyInformation/index.htm','dontDisplayRHS==TRUE');
g_navNode_8_13=g_navNode_8.addNode('ss_au_WorldHeadquarters','World Headquarters',ssUrlPrefix + 'AboutUs/WorldHeadquarters/index.htm','dontDisplayRHS==TRUE');

