/////////////////////////////////////////////////////////////////////////////
// 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('136','Home',ssUrlPrefix + 'index.htm',null,'NavigationRootLevel==2','SectionLabelShort_en==ILO home','SectionLabelShort_es==OIT inicio','SectionLabelShort_fr==Accueil OIT','SectionLabel_en==International Labour Organization','SectionLabel_es==Organizaci\xf3n Internacional del Trabajo','SectionLabel_fr==Organisation Internationale du Travail','SiteLanguages==en,fr,es','maxAge==900','maxAgeSecondary==3600');
g_navNode_0=g_navNode_Root.addNode('145','About the ILO',ssUrlPrefix + 'about-the-ilo/index.htm','SectionLabel_en==About the ILO','SectionLabel_es==Acerca de la OIT','SectionLabel_fr==A propos de l\\x27OIT ','labelen==test','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_0=g_navNode_0.addNode('164','Mission and objectives',ssUrlPrefix + 'about-the-ilo/mission-and-objectives/index.htm','SectionLabelShort_en==Mission and objectives','SectionLabelShort_es==Misi\xf3n y objetivos','SectionLabelShort_fr==Mission et objectifs ','SectionLabel_en==Mission and objectives','SectionLabel_es==Misi\xf3n y objetivos ','SectionLabel_fr==Mission et objectifs de l\\x27OIT','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_1=g_navNode_0.addNode('165','Decent work agenda',ssUrlPrefix + 'about-the-ilo/decent-work-agenda/index.htm','SectionLabel_en==Decent work agenda','SectionLabel_es==El Programa de Trabajo Decente','SectionLabel_fr==L\u2019Agenda pour le travail d\xe9cent','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_1_0=g_navNode_0_1.addNode('262','Employment creation',ssUrlPrefix + 'about-the-ilo/decent-work-agenda/employment-creation/index.htm','SectionLabel_en==Employment creation','SectionLabel_es==Creaci\xf3n de empleos','SectionLabel_fr==Cr\xe9ation d\\x27emploi ','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_1_1=g_navNode_0_1.addNode('263','Rights at work',ssUrlPrefix + 'about-the-ilo/decent-work-agenda/rights-at-work/index.htm','SectionLabel_en==Rights at work','SectionLabel_es==Derechos en el trabajo ','SectionLabel_fr==Droits au travail ','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_1_2=g_navNode_0_1.addNode('264','Social dialogue',ssUrlPrefix + 'about-the-ilo/decent-work-agenda/social-dialogue/index.htm','SectionLabel_en==Social dialogue','SectionLabel_es==Di\xe1logo social','SectionLabel_fr==Dialogue social','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_1_3=g_navNode_0_1.addNode('266','Social protection',ssUrlPrefix + 'about-the-ilo/decent-work-agenda/social-protection/index.htm','SectionLabel_en==Social protection','SectionLabel_es==Protecci\xf3n social ','SectionLabel_fr==Protection sociale ','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_2=g_navNode_0.addNode('166','Who we are',ssUrlPrefix + 'about-the-ilo/who-we-are/index.htm','SectionLabelShort_en==Who we are','SectionLabelShort_es==Qui\xe9nes somos','SectionLabelShort_fr==Structure','SectionLabel_en==Who we are','SectionLabel_es==Qui\xe9nes somos','SectionLabel_fr==Structure','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_2_0=g_navNode_0_2.addNode('267','Tripartite constituents',ssUrlPrefix + 'about-the-ilo/who-we-are/tripartite-constituents/index.htm','SectionLabel_en==Tripartite constituents','SectionLabel_es==Mandantes tripartitas','SectionLabel_fr==Constituants tripartites','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_2_0_3=g_navNode_0_2_0.addNode('5000','Resources for constituents',ssUrlPrefix + 'about-the-ilo/who-we-are/tripartite-constituents/resources-for-constituents/index.htm','SectionLabel_en==Resources for constituents','SectionLabel_es==Recursos para mandantes','SectionLabel_fr==Ressources pour les constituants','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_2_1=g_navNode_0_2.addNode('268','International Labour Office',ssUrlPrefix + 'about-the-ilo/who-we-are/international-labour-office/index.htm','SectionLabel_en==International Labour Office','SectionLabel_es==Oficina Internacional de Trabajo','SectionLabel_fr==Bureau International du Travail','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_2_2=g_navNode_0_2.addNode('269','ILO Director-General',ssUrlPrefix + 'about-the-ilo/who-we-are/ilo-director-general/index.htm','SectionLabel_en==ILO Director-General','SectionLabel_es==Director General de la OIT','SectionLabel_fr==Directeur g\xe9n\xe9ral','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_2_3=g_navNode_0_2.addNode('270','ILO Administrative Tribunal',ssUrlPrefix + 'about-the-ilo/who-we-are/ilo-administrative-tribunal/index.htm','SectionLabel_en==ILO Administrative Tribunal','SectionLabel_es==Tribunal Administrativo de la OIT','SectionLabel_fr==Tribunal administratif de l\\x27OIT','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_2_4=g_navNode_0_2.addNode('271','ILO Centres and Institutes',ssUrlPrefix + 'about-the-ilo/who-we-are/ilo-centres-and-institutes/index.htm','SectionLabel_en==ILO Centres and Institutes','SectionLabel_es==Institutos y Centros de la OIT','SectionLabel_fr==Centres et Instituts de l\\x27OIT','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_3=g_navNode_0.addNode('168','How the ILO works',ssUrlPrefix + 'about-the-ilo/how-the-ilo-works/index.htm','SectionLabel_en==How the ILO works','SectionLabel_es==Como funciona la OIT ','SectionLabel_fr==Fonctionnement','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_3_0=g_navNode_0_3.addNode('275','International Labour Conference',ssUrlPrefix + 'about-the-ilo/how-the-ilo-works/international-labour-conference/index.htm','SectionLabel_en==International Labour Conference','SectionLabel_es==Conferencia Internacional del Trabajo','SectionLabel_fr==Conf\xe9rence internationale du Travail','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_3_1=g_navNode_0_3.addNode('276','Governing Body',ssUrlPrefix + 'about-the-ilo/how-the-ilo-works/governing-body/index.htm','SectionLabel_en==Governing Body','SectionLabel_es==Consejo de Administraci\xf3n ','SectionLabel_fr==Conseil d\u2019administration ','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_3_2=g_navNode_0_3.addNode('277','ILO supervisory system/mechanism',ssUrlPrefix + 'about-the-ilo/how-the-ilo-works/ilo-supervisory-system-mechanism/index.htm','SectionLabel_en==ILO supervisory system/mechanism','SectionLabel_es==Mecanismo de control','SectionLabel_fr==M\xe9canismes de contr\xf4le','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_3_3=g_navNode_0_3.addNode('278','Departments and offices',ssUrlPrefix + 'about-the-ilo/how-the-ilo-works/departments-and-offices/index.htm','SectionLabel_en==Departments and offices','SectionLabel_es==Departamentos y oficinas ','SectionLabel_fr==D\xe9partements et bureaux ','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_3_4=g_navNode_0_3.addNode('279','Development Cooperation',ssUrlPrefix + 'about-the-ilo/how-the-ilo-works/development-cooperation/index.htm','SectionLabel_en==Development Cooperation','SectionLabel_es==Cooperaci\xf3n al desarrollo','SectionLabel_fr==Coop\xe9ration au d\xe9veloppement','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_3_5=g_navNode_0_3.addNode('280','Programme and budget',ssUrlPrefix + 'about-the-ilo/how-the-ilo-works/programme-and-budget/index.htm','SectionLabel_en==Programme and budget','SectionLabel_es==Programa y presupuesto','SectionLabel_fr==Programme et budget','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_3_8=g_navNode_0_3.addNode('4646','ILO and the multilateral system',ssUrlPrefix + 'about-the-ilo/how-the-ilo-works/multilateral-system/index.htm','SectionLabelShort_en==Multilateral system','SectionLabelShort_es==Sistema multilateral','SectionLabelShort_fr==Syst\xe8me multilat\xe9ral','SectionLabel_en==The ILO and the multilateral system','SectionLabel_es==La OIT y el sistema multilateral','SectionLabel_fr==L\u2019OIT et le syst\xe8me multilat\xe9ral','maxAge==3600');
g_navNode_0_3_8_0=g_navNode_0_3_8.addNode('4650','facet',ssUrlPrefix + 'about-the-ilo/how-the-ilo-works/multilateral-system/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on the ILO and the multilateral system','SectionLabel_es==Recursos sobre la OIT y el sistema multilateral','SectionLabel_fr==Ressources sur l\u2019OIT et le syst\xe8me multilat\xe9ral');
g_navNode_0_3_8_1=g_navNode_0_3_8.addNode('4645','The ILO and the G20',ssUrlPrefix + 'about-the-ilo/how-the-ilo-works/multilateral-system/g20/index.htm','SectionLabel_en==The ILO and the G20','SectionLabel_es==La OIT y el G20','SectionLabel_fr==L\\x27OIT et le G20','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_4=g_navNode_0.addNode('169','History',ssUrlPrefix + 'about-the-ilo/history/index.htm','SectionLabel_en==Origins and history','SectionLabel_es==Origenes e Historia','SectionLabel_fr==Origines et histoire','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_5=g_navNode_0.addNode('170','Where we are',ssUrlPrefix + 'about-the-ilo/where-we-are/index.htm','SectionLabel_en==Where we are','SectionLabel_es==La OIT en el mundo','SectionLabel_fr==L\\x27OIT dans le monde','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6=g_navNode_0.addNode('171','Press and media centre',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/index.htm','SectionLabel_en==Press and media centre','SectionLabel_es==Centro de prensa','SectionLabel_fr==Centre de presse','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_0=g_navNode_0_6.addNode('288','News',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/news/index.htm','SectionLabel_en==News','SectionLabel_es==Noticias','SectionLabel_fr==Actualit\xe9s','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_1=g_navNode_0_6.addNode('289','Press releases',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/press-releases/index.htm','Hide==TRUE','RSSFeedQuery==dDocType \x3cmatches\x3e \x60PressRelease\x60','SectionLabel_en==Press releases','SectionLabel_es==Comunicados de prensa','SectionLabel_fr==Communiqu\xe9s de presse','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_2=g_navNode_0_6.addNode('290','Insight',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/insight/index.htm','SectionLabel_en==Articles','SectionLabel_es==Art\xedculos','SectionLabel_fr==Articles','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_2_0=g_navNode_0_6_2.addNode('4929','Arab world',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/insight/arab-world/index.htm','Hide==TRUE','SectionLabel_en==Changes in the Arab world','SectionLabel_es==Cambios en el mundo \xe1rabe','SectionLabel_fr==Changement du monde arabe','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_3=g_navNode_0_6.addNode('291','Videos',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/videos/index.htm','SectionLabel_en==Videos','SectionLabel_es==V\xeddeo','SectionLabel_fr==Vid\xe9o','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_0_6_3_0=g_navNode_0_6_3.addNode('292','Video News Releases',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/videos/video-news-releases/index.htm','SectionLabel_en==Video News Releases','SectionLabel_es==Comunicado de prensa audiovisual','SectionLabel_fr==Reportages Vid\xe9o ','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_3_1=g_navNode_0_6_3.addNode('293','Documentaries',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/videos/documentaries/index.htm','SectionLabel_en==Documentaries','SectionLabel_es==Documentales','SectionLabel_fr==Documentaires','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_3_3=g_navNode_0_6_3.addNode('297','Institutional videos',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/videos/institutional-videos/index.htm','SectionLabel_en==Institutional videos','SectionLabel_es==V\xeddeos institucionales','SectionLabel_fr==Films institutionnels','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_3_4=g_navNode_0_6_3.addNode('298','Public Service Announcements',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/videos/public-service-announcements/index.htm','SectionLabel_en==Public Service Announcements','SectionLabel_es==Anuncios de servicio p\xfablico','SectionLabel_fr==Messages d\\x27int\xe9r\xeat public','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_3_5=g_navNode_0_6_3.addNode('299','Video interviews',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/videos/video-interviews/index.htm','SectionLabel_en==Video interviews','SectionLabel_es==Entrevistas en v\xeddeo','SectionLabel_fr==Interviews vid\xe9o','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_3_6=g_navNode_0_6_3.addNode('300','Events coverage',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/videos/events-coverage/index.htm','SectionLabel_en==Events coverage','SectionLabel_es==Cobertura de eventos','SectionLabel_fr==Couverture \xe9v\xe9nementielle','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_3_7=g_navNode_0_6_3.addNode('373','Video facilities',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/videos/video-facilities/index.htm','SectionLabel_en==ILO TV and radio facilities','SectionLabel_es==Equipos de radio y de televisi\xf3n de la OIT','SectionLabel_fr==\xc9quipements de radio et de t\xe9l\xe9vision de l\u2019OIT ','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_3_8=g_navNode_0_6_3.addNode('374','Awards',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/videos/awards/index.htm','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_4=g_navNode_0_6.addNode('301','Photos and Slideshows',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/photos-and-slideshows/index.htm','SectionLabel_en==Photos and Slideshows','SectionLabel_es==Fotos y galer\xedas','SectionLabel_fr==Photos et diaporamas','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_4_0=g_navNode_0_6_4.addNode('302','Slideshows',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/photos-and-slideshows/slideshows/index.htm','SectionLabel_en==Slideshows','SectionLabel_es==Galer\xedas','SectionLabel_fr==Diaporamas','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_5=g_navNode_0_6.addNode('303','Audio',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/audio/index.htm','SectionLabel_en==Audio','SectionLabel_es==Audio','SectionLabel_fr==Audio','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_6=g_navNode_0_6.addNode('305','Statements and speeches',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/statements-and-speeches/index.htm','SectionLabel_en==Statements and speeches','SectionLabel_es==Discursos ','SectionLabel_fr==Discours','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_7=g_navNode_0_6.addNode('306','Special events',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/special-events/index.htm','Hide==TRUE','SectionLabel_en==Special events','SectionLabel_es==Cobertura de eventos ','SectionLabel_fr==Couverture \xe9v\xe9nementielle ','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_6_8=g_navNode_0_6.addNode('307','Issue briefs',ssUrlPrefix + 'about-the-ilo/press-and-media-centre/issue-briefs/index.htm','SectionLabel_en==Issue briefs','SectionLabel_es==Fichas de datos','SectionLabel_fr==Fiches d\\x27information','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_7=g_navNode_0.addNode('308','ILO in the media',ssUrlPrefix + 'about-the-ilo/ilo-in-the-media/index.htm','SectionLabel_en==ILO in the media','SectionLabel_es==OIT en los medios de comunicaci\xf3n','SectionLabel_fr==L\\x27OIT dans les m\xe9dias','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_7_0=g_navNode_0_7.addNode('4558','Broadcast media coverage about the ILO in Arabic',ssUrlPrefix + 'about-the-ilo/ilo-in-the-media/arabic/index.htm','Hide==TRUE','SectionLabel_en==\u0645\u0646\u0638\u0645\u0629 \u0627\u0644\u0639\u0645\u0644 \u0627\u0644\u062f\u0648\u0644\u064a\u0629 \u0641\u064a \u0648\u0633\u0627\u0626\u0644 \u0627\u0644\u0625\u0639\u0644\u0627\u0645','SectionLabel_es==\u0645\u0646\u0638\u0645\u0629 \u0627\u0644\u0639\u0645\u0644 \u0627\u0644\u062f\u0648\u0644\u064a\u0629 \u0641\u064a \u0648\u0633\u0627\u0626\u0644 \u0627\u0644\u0625\u0639\u0644\u0627\u0645','SectionLabel_fr==\u0645\u0646\u0638\u0645\u0629 \u0627\u0644\u0639\u0645\u0644 \u0627\u0644\u062f\u0648\u0644\u064a\u0629 \u0641\u064a \u0648\u0633\u0627\u0626\u0644 \u0627\u0644\u0625\u0639\u0644\u0627\u0645','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_8=g_navNode_0.addNode('309','Employment opportunities',ssUrlPrefix + 'about-the-ilo/employment-opportunities/index.htm','SectionLabel_en==Employment opportunities','SectionLabel_es==Oportunidades de empleo','SectionLabel_fr==Offres d\\x27emploi ','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_0_9=g_navNode_0.addNode('310','Procurement',ssUrlPrefix + 'about-the-ilo/procurement/index.htm','SectionLabel_en==Procurement','SectionLabel_es==Adquisiciones','SectionLabel_fr==Achats','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_1=g_navNode_Root.addNode('146','Topics',ssUrlPrefix + 'topics/index.htm','SectionLabel_en==Topics','SectionLabel_es==Temas','SectionLabel_fr==Th\xe8mes','maxAge==7200','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_0=g_navNode_1.addNode('184','Child Labour',ssUrlPrefix + 'topics/child-labour/index.htm','SectionLabel_en==Child Labour','SectionLabel_es==Trabajo infantil','SectionLabel_fr==Travail des enfants','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_1=g_navNode_1.addNode('188','Decent work',ssUrlPrefix + 'topics/decent-work/index.htm','SectionLabel_en==Decent work','SectionLabel_es==Trabajo decente','SectionLabel_fr==Travail d\xe9cent','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_2=g_navNode_1.addNode('4347','Domestic workers',ssUrlPrefix + 'topics/domestic-workers/index.htm','SectionLabel_en==Domestic workers','SectionLabel_es==Trabajadores dom\xe9sticos','SectionLabel_fr==Travailleurs domestiques','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_1_3=g_navNode_1.addNode('191','Economic and social development',ssUrlPrefix + 'topics/economic-and-social-development/index.htm','SectionLabel_en==Economic and social development','SectionLabel_es==Desarrollo econ\xf3mico y social','SectionLabel_fr==D\xe9veloppement \xe9conomique et social','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_3_0=g_navNode_1_3.addNode('216','Development aid',ssUrlPrefix + 'topics/economic-and-social-development/development-aid/index.htm','SectionLabel_en==Development aid','SectionLabel_es==Ayuda al desarrollo','SectionLabel_fr==Aide au d\xe9veloppement','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_3_1=g_navNode_1_3.addNode('217','Gender and development',ssUrlPrefix + 'topics/economic-and-social-development/gender-and-development/index.htm','SectionLabel_en==Gender and development','SectionLabel_es==G\xe9nero y desarrollo','SectionLabel_fr==Genre et d\xe9veloppement','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_3_2=g_navNode_1_3.addNode('218','Globalization',ssUrlPrefix + 'topics/economic-and-social-development/globalization/index.htm','SectionLabel_en==Globalization','SectionLabel_es==Globalizaci\xf3n','SectionLabel_fr==Mondialisation','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_3_3=g_navNode_1_3.addNode('219','Poverty',ssUrlPrefix + 'topics/economic-and-social-development/poverty/index.htm','SectionLabel_en==Poverty','SectionLabel_es==Pobreza','SectionLabel_fr==Pauvret\xe9','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_3_4=g_navNode_1_3.addNode('4370','Rural development',ssUrlPrefix + 'topics/economic-and-social-development/rural-development/index.htm','SectionLabel_en==Rural development','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_3_5=g_navNode_1_3.addNode('220','Sustainable development',ssUrlPrefix + 'topics/economic-and-social-development/sustainable-development/index.htm','SectionLabel_en==Sustainable development','SectionLabel_es==Desarrollo sostenible','SectionLabel_fr==D\xe9veloppement durable','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_4=g_navNode_1.addNode('192','Employment promotion',ssUrlPrefix + 'topics/employment-promotion/index.htm','SectionLabel_en==Employment promotion','SectionLabel_es==Promoci\xf3n del empleo','SectionLabel_fr==Promotion de l\\x27emploi','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_4_0=g_navNode_1_4.addNode('221','Cooperatives',ssUrlPrefix + 'topics/employment-promotion/cooperatives/index.htm','SectionLabel_en==Cooperatives','SectionLabel_es==Cooperativas','SectionLabel_fr==Coop\xe9ratives','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_4_1=g_navNode_1_4.addNode('222','Corporate citizenship',ssUrlPrefix + 'topics/employment-promotion/corporate-citizenship/index.htm','SectionLabel_en==Corporate citizenship','SectionLabel_es==Ciudadan\xeda de empresa','SectionLabel_fr==Citoyennet\xe9 d\u2019entreprise','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_4_2=g_navNode_1_4.addNode('223','Informal economy',ssUrlPrefix + 'topics/employment-promotion/informal-economy/index.htm','SectionLabel_en==Informal economy','SectionLabel_es==Econom\xeda informal','SectionLabel_fr==Economie informelle','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_4_3=g_navNode_1_4.addNode('224','Local economic development',ssUrlPrefix + 'topics/employment-promotion/local-economic-development/index.htm','SectionLabel_en==Local economic development','SectionLabel_es==Desarrollo econ\xf3mico local','SectionLabel_fr==D\xe9veloppement \xe9conomique local','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_4_4=g_navNode_1_4.addNode('225','Microfinance',ssUrlPrefix + 'topics/employment-promotion/microfinance/index.htm','SectionLabel_en==Microfinance','SectionLabel_es==Microfinanciamento','SectionLabel_fr==Microfinance','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_4_5=g_navNode_1_4.addNode('226','Multinational enterprises',ssUrlPrefix + 'topics/employment-promotion/multinational-enterprises/index.htm','SectionLabel_en==Multinational enterprises','SectionLabel_es==Empresas multinacionales','SectionLabel_fr==Entreprises multinationales','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_4_6=g_navNode_1_4.addNode('227','Recovery and reconstruction',ssUrlPrefix + 'topics/employment-promotion/recovery-and-reconstruction/index.htm','SectionLabel_en==Recovery and reconstruction','SectionLabel_es==Recuperaci\xf3n y reconstrucci\xf3n','SectionLabel_fr==Redressement et reconstruction','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_4_7=g_navNode_1_4.addNode('228','Small enterprises',ssUrlPrefix + 'topics/employment-promotion/small-enterprises/index.htm','SectionLabel_en==Small enterprises','SectionLabel_es==Peque\xf1as empresas','SectionLabel_fr==Petites entreprises','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_5=g_navNode_1.addNode('193','Employment security',ssUrlPrefix + 'topics/employment-security/index.htm','SectionLabel_en==Employment security','SectionLabel_es==Seguridad del empleo','SectionLabel_fr==S\xe9curit\xe9 de l\\x27emploi','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_6=g_navNode_1.addNode('199','Equality and discrimination',ssUrlPrefix + 'topics/equality-and-discrimination/index.htm','SectionLabel_en==Equality and discrimination','SectionLabel_es==Igualdad y discriminaci\xf3n','SectionLabel_fr==Egalit\xe9 et discrimination','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_6_0=g_navNode_1_6.addNode('229','Gender equality',ssUrlPrefix + 'topics/equality-and-discrimination/gender-equality/index.htm','SectionLabel_en==Gender equality','SectionLabel_es==Igualdad de g\xe9nero','SectionLabel_fr==Egalit\xe9 des genres','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_6_1=g_navNode_1_6.addNode('230','Indigenous and tribal peoples',ssUrlPrefix + 'topics/equality-and-discrimination/indigenous-and-tribal-peoples/index.htm','SectionLabel_en==Indigenous and tribal peoples','SectionLabel_es==Pueblos ind\xedgenas y tribales','SectionLabel_fr==Peuples indig\xe8nes et tribaux','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_6_2=g_navNode_1_6.addNode('231','Maternity protection',ssUrlPrefix + 'topics/equality-and-discrimination/maternity-protection/index.htm','SectionLabel_en==Maternity protection','SectionLabel_es==Protecci\xf3n de la maternidad','SectionLabel_fr==Protection de la maternit\xe9','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_6_3=g_navNode_1_6.addNode('232','Workplace discrimination',ssUrlPrefix + 'topics/equality-and-discrimination/workplace-discrimination/index.htm','SectionLabel_en==Workplace discrimination','SectionLabel_es==Discriminaci\xf3n al trabajo','SectionLabel_fr==Discrimination au travail','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_7=g_navNode_1.addNode('200','Forced labour',ssUrlPrefix + 'topics/forced-labour/index.htm','SectionLabel_en==Forced labour','SectionLabel_es==Trabajo forzoso','SectionLabel_fr==Travail forc\xe9','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_8=g_navNode_1.addNode('201','Freedom of association and the right to collective bargaining',ssUrlPrefix + 'topics/freedom-of-association-and-the-right-to-collective-bargaining/index.htm','SectionLabel_en==Freedom of association and the right to collective bargaining','SectionLabel_es==Libertad sindical y derecho a la negociaci\xf3n colectiva ','SectionLabel_fr==Libert\xe9 d\\x27association et le droit de negociation collective','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_9=g_navNode_1.addNode('379','Green jobs',ssUrlPrefix + 'topics/green-jobs/index.htm','SectionLabel_en==Green jobs','SectionLabel_es==Empleos verdes','SectionLabel_fr==Emplois verts','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_10=g_navNode_1.addNode('202','HIV AIDS',ssUrlPrefix + 'topics/hiv-aids/index.htm','SectionLabel_en==HIV/AIDS','SectionLabel_es==VIH/SIDA','SectionLabel_fr==VIH/SIDA','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_11=g_navNode_1.addNode('234','Labour administration and inspection',ssUrlPrefix + 'topics/labour-administration-inspection/index.htm','SectionLabel_en==Labour administration and inspection','SectionLabel_es==Administraci\xf3n e inspecci\xf3n del trabajo','SectionLabel_fr==Administration et inspection du travail','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_12=g_navNode_1.addNode('203','Labour law',ssUrlPrefix + 'topics/labour-law/index.htm','SectionLabel_en==Labour law','SectionLabel_es==Derecho del trabajo','SectionLabel_fr==Droit du travail','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_13=g_navNode_1.addNode('204','Labour migration',ssUrlPrefix + 'topics/labour-migration/index.htm','SectionLabel_en==Labour migration','SectionLabel_es==Migraci\xf3n laboral','SectionLabel_fr==Migration','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_14=g_navNode_1.addNode('5','Millennium Development Goals ',ssUrlPrefix + 'topics/millennium-development-goals/index.htm','SectionLabel_en==Millennium Development Goals ','SectionLabel_es==Objetivos de Desarrollo del Milenio','SectionLabel_fr==Les Objectifs du Mill\xe9naire pour le d\xe9veloppement','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_15=g_navNode_1.addNode('205','Safety and health at work',ssUrlPrefix + 'topics/safety-and-health-at-work/index.htm','SectionLabel_en==Safety and health at work','SectionLabel_es==Salud y seguridad en trabajo','SectionLabel_fr==S\xe9curit\xe9 et sant\xe9 au travail','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_16=g_navNode_1.addNode('206','Skills knowledge and employability',ssUrlPrefix + 'topics/skills-knowledge-and-employability/index.htm','SectionLabel_en==Skills, knowledge and employability','SectionLabel_es==Conocimientos te\xf3ricos y pr\xe1cticos y empleabilidad','SectionLabel_fr==Comp\xe9tences, savoirs et employabilit\xe9','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_16_0=g_navNode_1_16.addNode('235','Disability and work',ssUrlPrefix + 'topics/skills-knowledge-and-employability/disability-and-work/index.htm','SectionLabel_en==Disability and work','SectionLabel_es==Discapacidad y trabajo','SectionLabel_fr==Handicap et travail','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_16_1=g_navNode_1_16.addNode('236','Lifelong learning',ssUrlPrefix + 'topics/skills-knowledge-and-employability/lifelong-learning/index.htm','SectionLabel_en==Lifelong learning','SectionLabel_es==Formaci\xf3n permanente','SectionLabel_fr==Formation permanente','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_16_2=g_navNode_1_16.addNode('237','Training and vocational guidance',ssUrlPrefix + 'topics/skills-knowledge-and-employability/training-and-vocational-guidance/index.htm','SectionLabel_en==Training and vocational guidance','SectionLabel_es==Capacitaci\xf3n y orientaci\xf3n profesional','SectionLabel_fr==Formation et orientation professionnelle','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_17=g_navNode_1.addNode('207','Social security',ssUrlPrefix + 'topics/social-security/index.htm','SectionLabel_en==Social security','SectionLabel_es==Seguridad social','SectionLabel_fr==S\xe9curit\xe9 sociale','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_18=g_navNode_1.addNode('208','Workers\' and Employers\' organizations, tripartism and social dialogue',ssUrlPrefix + 'topics/workers-and-employers-organizations-tripartism-and-social-dialogue/index.htm','SectionLabelShort_en==Tripartism and social dialogue','SectionLabel_en==Workers\\x27 and Employers\\x27 organizations, tripartism and social dialogue','SectionLabel_es==Organizaciones de trabajadores y empleadores, tripartismo y di\xe1logo social ','SectionLabel_fr==Organisations d\\x27employeurs, de travailleurs, tripartisme et dialogue social','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_19=g_navNode_1.addNode('214','Working conditions',ssUrlPrefix + 'topics/working-conditions/index.htm','SectionLabel_en==Working conditions','SectionLabel_es==Condiciones de trabajo','SectionLabel_fr==Conditions de travail','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_19_0=g_navNode_1_19.addNode('238','Wages',ssUrlPrefix + 'topics/working-conditions/wages/index.htm','SectionLabel_en==Wages','SectionLabel_es==Salarios','SectionLabel_fr==Salaires','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_19_1=g_navNode_1_19.addNode('239','Working time',ssUrlPrefix + 'topics/working-conditions/working-time/index.htm','SectionLabel_en==Working time','SectionLabel_es==Tiempo de trabajo','SectionLabel_fr==Temps de travail','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==FALSE');
g_navNode_1_20=g_navNode_1.addNode('215','Youth employment',ssUrlPrefix + 'topics/youth-employment/index.htm','SectionLabel_en==Youth employment','SectionLabel_es==Empleo juvenil','SectionLabel_fr==Emploi des jeunes','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_1_21=g_navNode_1.addNode('5094','Alphabetical',ssUrlPrefix + 'topics/alphabetical/index.htm','Hide==TRUE');
g_navNode_2=g_navNode_Root.addNode('147','Regions',ssUrlPrefix + 'regions/index.htm','SectionLabel_en==Regions','SectionLabel_es==Regiones ','SectionLabel_fr==R\xe9gions','maxAge==7200','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_2_0=g_navNode_2.addNode('254','Africa',ssUrlPrefix + 'regions/africa/index.htm','SectionLabel_en==Africa','SectionLabel_es==Africa','SectionLabel_fr==Afrique','maxAge==7200','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_2_1=g_navNode_2.addNode('255','Americas',ssUrlPrefix + 'regions/americas/index.htm','SectionLabel_en==Americas','SectionLabel_es==Am\xe9ricas','SectionLabel_fr==Am\xe9riques','maxAge==7200','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_2_2=g_navNode_2.addNode('256','Arab states',ssUrlPrefix + 'regions/arab-states/index.htm','SectionLabel_en==Arab states','SectionLabel_es==Estados \xe1rabes','SectionLabel_fr==Etats arabes','maxAge==7200','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_2_3=g_navNode_2.addNode('257','Asia and the Pacific',ssUrlPrefix + 'regions/asia-and-the-pacific/index.htm','SectionLabel_en==Asia and the Pacific','SectionLabel_es==Asia y el Pacifico','SectionLabel_fr==Asie et le Pacifique','maxAge==7200','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_2_4=g_navNode_2.addNode('258','Europe and Central Asia',ssUrlPrefix + 'regions/europe-and-central-asia/index.htm','SectionLabel_en==Europe and Central Asia','SectionLabel_es==Europa y Asia central','SectionLabel_fr==Europe et Asie centrale','maxAge==7200','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3=g_navNode_Root.addNode('148','Industries and sectors',ssUrlPrefix + 'industries-and-sectors/index.htm','Hide==TRUE','SectionLabel_en==Industries and sectors','SectionLabel_es==Sectores e industrias','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_0=g_navNode_3.addNode('311','Agriculture\x3b plantations\x3b other rural sectors',ssUrlPrefix + 'industries-and-sectors/agriculture-plantations-other-rural-sectors/index.htm','Hide==TRUE','SectionLabel_en==Agriculture\x3b plantations\x3b other rural sectors','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_0_0=g_navNode_3_0.addNode('4665','facet',ssUrlPrefix + 'industries-and-sectors/agriculture-plantations-other-rural-sectors/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Agriculture, plantations, and other rural sectors','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_1=g_navNode_3.addNode('312','Basic metal production',ssUrlPrefix + 'industries-and-sectors/basic-metal-production/index.htm','Hide==TRUE','SectionLabelShort_en==Basic metal production','SectionLabel_en==Basic metal production sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_1_0=g_navNode_3_1.addNode('4666','facet',ssUrlPrefix + 'industries-and-sectors/basic-metal-production/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Basic metal production sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_2=g_navNode_3.addNode('313','Chemical industries',ssUrlPrefix + 'industries-and-sectors/chemical-industries/index.htm','Hide==TRUE','SectionLabel_en==Chemical industries','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_2_0=g_navNode_3_2.addNode('4667','facet',ssUrlPrefix + 'industries-and-sectors/chemical-industries/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Chemical industries sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_3=g_navNode_3.addNode('314','Commerce',ssUrlPrefix + 'industries-and-sectors/commerce/index.htm','Hide==TRUE','SectionLabel_en==Commerce','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_3_0=g_navNode_3_3.addNode('4668','facet',ssUrlPrefix + 'industries-and-sectors/commerce/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Commerce sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_4=g_navNode_3.addNode('315','Construction',ssUrlPrefix + 'industries-and-sectors/construction/index.htm','Hide==TRUE','SectionLabelShort_en==Construction','SectionLabel_en==Construction sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_4_0=g_navNode_3_4.addNode('4669','facet',ssUrlPrefix + 'industries-and-sectors/construction/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Construction sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_5=g_navNode_3.addNode('316','Education',ssUrlPrefix + 'industries-and-sectors/education/index.htm','Hide==TRUE','SectionLabelShort_en==Education','SectionLabel_en==Education sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_5_0=g_navNode_3_5.addNode('4670','facet',ssUrlPrefix + 'industries-and-sectors/education/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Education sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_6=g_navNode_3.addNode('322','Financial services\x3b professional services',ssUrlPrefix + 'industries-and-sectors/financial-services-professional-services/index.htm','Hide==TRUE','SectionLabelShort_en==Financial services\x3b professional services','SectionLabel_en==Financial services and professional services sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_6_0=g_navNode_3_6.addNode('4671','facet',ssUrlPrefix + 'industries-and-sectors/financial-services-professional-services/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Financial services and professional services sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_7=g_navNode_3.addNode('324','Food\x3b drink\x3b tobacco',ssUrlPrefix + 'industries-and-sectors/food-drink-tobacco/index.htm','Hide==TRUE','SectionLabelShort_en==Food\x3b drink\x3b tobacco','SectionLabel_en==Food, drink and tobacco sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_7_0=g_navNode_3_7.addNode('4672','facet',ssUrlPrefix + 'industries-and-sectors/food-drink-tobacco/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Food, drink, and tobaco sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_8=g_navNode_3.addNode('325','Forestry\x3b wood\x3b pulp and paper',ssUrlPrefix + 'industries-and-sectors/forestry-wood-pulp-and-paper/index.htm','Hide==TRUE','SectionLabelShort_en==Forestry\x3b wood\x3b pulp and paper','SectionLabel_en==Forestry, wood, pulp and paper sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_8_0=g_navNode_3_8.addNode('4673','facet',ssUrlPrefix + 'industries-and-sectors/forestry-wood-pulp-and-paper/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Forestry\x3b wood\x3b pulp and paper sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_9=g_navNode_3.addNode('326','Health services',ssUrlPrefix + 'industries-and-sectors/health-services/index.htm','Hide==TRUE','SectionLabelShort_en==Health services','SectionLabel_en==Health services sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_9_0=g_navNode_3_9.addNode('4674','facet',ssUrlPrefix + 'industries-and-sectors/health-services/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Health services sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_10=g_navNode_3.addNode('327','Hotels\x3b catering\x3b tourism',ssUrlPrefix + 'industries-and-sectors/hotels-catering-tourism/index.htm','Hide==TRUE','SectionLabelShort_en==Hotels\x3b catering\x3b tourism','SectionLabel_en==Hotels, catering and tourism sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_10_0=g_navNode_3_10.addNode('4675','facet',ssUrlPrefix + 'industries-and-sectors/hotels-catering-tourism/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Hotels, catering, and tourism sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_11=g_navNode_3.addNode('328','Mechanical and electrical engineering',ssUrlPrefix + 'industries-and-sectors/mechanical-and-electrical-engineering/index.htm','Hide==TRUE','SectionLabelShort_en==Mechanical and electrical engineering','SectionLabel_en==Mechanical and electrical engineering sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_11_0=g_navNode_3_11.addNode('4676','facet',ssUrlPrefix + 'industries-and-sectors/mechanical-and-electrical-engineering/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Mechanical and electrical engineering sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_12=g_navNode_3.addNode('329','Media\x3b culture\x3b graphical',ssUrlPrefix + 'industries-and-sectors/media-culture-graphical/index.htm','Hide==TRUE','SectionLabelShort_en==Media\x3b culture\x3b graphical','SectionLabel_en==Media\x3b culture\x3b graphical','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_12_0=g_navNode_3_12.addNode('4677','facet',ssUrlPrefix + 'industries-and-sectors/media-culture-graphical/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Media, culture, and graphical sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_13=g_navNode_3.addNode('330','Mining \x28coal\x3b other mining\x29',ssUrlPrefix + 'industries-and-sectors/mining/index.htm','Hide==TRUE','SectionLabelShort_en==Mining \x28coal\x3b other mining\x29','SectionLabel_en==Mining \x28coal\x3b other mining\x29 sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_13_0=g_navNode_3_13.addNode('4678','facet',ssUrlPrefix + 'industries-and-sectors/mining/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Mining \x28coal and other mining\x29 sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_14=g_navNode_3.addNode('331','Oil and gas production\x3b oil refining',ssUrlPrefix + 'industries-and-sectors/oil-and-gas-production-oil-refining/index.htm','Hide==TRUE','SectionLabelShort_en==Oil and gas production\x3b oil refining','SectionLabel_en==Oil and gas production and oil refining sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_14_0=g_navNode_3_14.addNode('4679','facet',ssUrlPrefix + 'industries-and-sectors/oil-and-gas-production-oil-refining/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Oil and gas production and oil refining sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_15=g_navNode_3.addNode('332','Postal and telecommunications services',ssUrlPrefix + 'industries-and-sectors/postal-and-telecommunications-services/index.htm','Hide==TRUE','SectionLabelShort_en==Postal and telecommunications services','SectionLabel_en==Postal and telecommunications services sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_15_0=g_navNode_3_15.addNode('4680','facet',ssUrlPrefix + 'industries-and-sectors/postal-and-telecommunications-services/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Postal and telecommunications services sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_16=g_navNode_3.addNode('333','Public service',ssUrlPrefix + 'industries-and-sectors/public-service/index.htm','Hide==TRUE','SectionLabelShort_en==Public service','SectionLabel_en==Public service sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_16_0=g_navNode_3_16.addNode('4681','facet',ssUrlPrefix + 'industries-and-sectors/public-service/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Public services sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_17=g_navNode_3.addNode('334','Shipping\x3b ports\x3b fisheries\x3b inland waterways',ssUrlPrefix + 'industries-and-sectors/shipping-ports-fisheries-inland-waterways/index.htm','Hide==TRUE','SectionLabelShort_en==Shipping\x3b ports\x3b fisheries\x3b inland waterways','SectionLabel_en==Shipping, ports, fisheries and inland waterways sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_17_0=g_navNode_3_17.addNode('4682','facet',ssUrlPrefix + 'industries-and-sectors/shipping-ports-fisheries-inland-waterways/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Shipping, ports, fisheries, and inland waterways sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_18=g_navNode_3.addNode('335','Textiles\x3b clothing\x3b leather\x3b footwear',ssUrlPrefix + 'industries-and-sectors/textiles-clothing-leather-footwear/index.htm','Hide==TRUE','SectionLabelShort_en==Textiles\x3b clothing\x3b leather\x3b footwear','SectionLabel_en==Textiles, clothing, leather and footwear sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_18_0=g_navNode_3_18.addNode('4683','facet',ssUrlPrefix + 'industries-and-sectors/textiles-clothing-leather-footwear/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Textiles, clothing, leather, and footwear sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_19=g_navNode_3.addNode('336','Transport \x28including civil aviation\x3b railways\x3b road transport\x29',ssUrlPrefix + 'industries-and-sectors/transport-including-civil-aviation-railways-road-transport/index.htm','Hide==TRUE','SectionLabelShort_en==Transport \x28including civil aviation\x3b railways\x3b road transport\x29','SectionLabel_en==Transport \x28including civil aviation, railways and road transport\x29 sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_19_0=g_navNode_3_19.addNode('4684','facet',ssUrlPrefix + 'industries-and-sectors/transport-including-civil-aviation-railways-road-transport/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Transport \x28including civil aviation, railways, and road transport\x29 sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_20=g_navNode_3.addNode('337','Transport equipment manufacturing',ssUrlPrefix + 'industries-and-sectors/transport-equipment-manufacturing/index.htm','Hide==TRUE','SectionLabelShort_en==Transport equipment manufacturing','SectionLabel_en==Transport equipment manufacturing sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_20_0=g_navNode_3_20.addNode('4685','facet',ssUrlPrefix + 'industries-and-sectors/transport-equipment-manufacturing/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Transport equipment manufacturing sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_3_21=g_navNode_3.addNode('338','Utilities \x28water, gas\x3b electricity\x29',ssUrlPrefix + 'industries-and-sectors/utilities-water-gas-electricity/index.htm','Hide==TRUE','SectionLabelShort_en==Utilities \x28water, gas\x3b electricity\x29','SectionLabel_en==Utilities \x28water, gas, electricity\x29 sector','secondaryUrlVariableField==pl_replaceable_content','sorted==TRUE');
g_navNode_3_21_0=g_navNode_3_21.addNode('4686','facet',ssUrlPrefix + 'industries-and-sectors/utilities-water-gas-electricity/facet/index.htm','Hide==TRUE','SectionLabel_en==Resources on Utilities \x28water, gas, and electricity\x29 sector','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4=g_navNode_Root.addNode('149','Meetings and events',ssUrlPrefix + 'meetings-and-events/index.htm','SectionLabelShort_en==Meetings and events','SectionLabelShort_es==Eventos y reuniones','SectionLabelShort_fr==Ev\xe9nements et r\xe9unions','SectionLabel_en==Ongoing and forthcoming meetings and events','SectionLabel_es==Eventos y reuniones en curso y venideras','SectionLabel_fr==Ev\xe9nements et r\xe9unions en cours et \xe0 venir','maxAge==1800','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_0=g_navNode_4.addNode('339','International Labour Conference',ssUrlPrefix + 'meetings-and-events/international-labour-conference/index.htm','SectionLabel_en==International Labour Conference','SectionLabel_es==Conferencia Internacional del Trabajo','SectionLabel_fr==Conf\xe9rence internationale du Travail','maxAge==7200','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_1=g_navNode_4.addNode('340','Governing Body',ssUrlPrefix + 'meetings-and-events/governing-body/index.htm','SectionLabel_en==Governing Body','SectionLabel_es==Consejo de Administraci\xf3n','SectionLabel_fr==Conseil d\u2019administration','maxAge==7200','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_2=g_navNode_4.addNode('341','Regional meetings',ssUrlPrefix + 'meetings-and-events/regional-meetings/index.htm','SectionLabel_en==Regional meetings','SectionLabel_es==Reuniones regionales','SectionLabel_fr==R\xe9unions r\xe9gionales','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_2_0=g_navNode_4_2.addNode('525','Africa',ssUrlPrefix + 'meetings-and-events/regional-meetings/africa/index.htm','SectionLabelShort_en==Africa','SectionLabelShort_es==\xc1frica','SectionLabelShort_fr==Afrique','SectionLabel_en==African Regional Meetings ','SectionLabel_es==Reuniones Regionales Africanas ','SectionLabel_fr==R\xe9unions r\xe9gionales africaines ','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_2_0_0=g_navNode_4_2_0.addNode('4622','12 ARM',ssUrlPrefix + 'meetings-and-events/regional-meetings/africa/arm-12/index.htm','Hide==TRUE','SectionLabelShort_en==12th Regional Meeting','SectionLabelShort_fr==12\xe8me R\xe9union R\xe9gionale','SectionLabel_en==12th African Regional Meeting, Johannesburg, South Africa, 11\u201314 October 2011','SectionLabel_fr==12\xe8me R\xe9union R\xe9gionale Africaine, Johannesburg, Afrique du Sud, 11\u201314 octobre 2011','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_2_1=g_navNode_4_2.addNode('526','Americas',ssUrlPrefix + 'meetings-and-events/regional-meetings/americas/index.htm','SectionLabelShort_en==Americas','SectionLabelShort_es==Am\xe9rica','SectionLabelShort_fr==Ameriques','SectionLabel_en==American Regional Meetings ','SectionLabel_es==Reuniones Regionales Americanas ','SectionLabel_fr==R\xe9unions r\xe9gionales des Am\xe9riques','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_2_2=g_navNode_4_2.addNode('527','Asia and the Pacific',ssUrlPrefix + 'meetings-and-events/regional-meetings/asia/index.htm','SectionLabelShort_en==Asia and the Pacific','SectionLabelShort_es==Asia y el Pacifico','SectionLabelShort_fr==Asie et le Pacifique','SectionLabel_en==Asia and the Pacific Regional Meetings ','SectionLabel_es==Reuniones Regionales Asi\xe1ticas ','SectionLabel_fr==R\xe9unions r\xe9gionales asiennes ','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_2_2_0=g_navNode_4_2_2.addNode('4359','15 APRM',ssUrlPrefix + 'meetings-and-events/regional-meetings/asia/aprm-15/index.htm','SectionLabelShort_en==15th Regional Meeting','SectionLabel_en==15th Asia and the Pacific Regional Meeting, Kyoto, Japan, 4-7 December 2011','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_2_2_0_0=g_navNode_4_2_2_0.addNode('4361','Programme',ssUrlPrefix + 'meetings-and-events/regional-meetings/asia/aprm-15/programme/index.htm','SectionLabelShort_en==Programme','SectionLabel_en==Programme of the 15th Asia and the Pacific Regional Meeting','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_2_2_0_1=g_navNode_4_2_2_0.addNode('4362','Reports',ssUrlPrefix + 'meetings-and-events/regional-meetings/asia/aprm-15/reports/index.htm','SectionLabelShort_en==Reports','SectionLabel_en==Reports\x3a 15th Asia and the Pacific Regional Meeting','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_2_2_0_2=g_navNode_4_2_2_0.addNode('4363','Media centre',ssUrlPrefix + 'meetings-and-events/regional-meetings/asia/aprm-15/media-centre/index.htm','SectionLabelShort_en==Media centre','SectionLabel_en==Media centre\x3a 15th Asia and the Pacific Regional Meeting','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_2_2_0_3=g_navNode_4_2_2_0.addNode('4724','Documents in Arabic',ssUrlPrefix + 'meetings-and-events/regional-meetings/asia/aprm-15/arabic/index.htm','Hide==TRUE','SectionLabelShort_en==\u0627\u0644\u0648\u062b\u0627\u0626\u0642 \u0627\u0644\u0645\u062a\u0627\u062d\u0629 \u0628\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629','SectionLabelShort_es==\u0627\u0644\u0648\u062b\u0627\u0626\u0642 \u0627\u0644\u0645\u062a\u0627\u062d\u0629 \u0628\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629','SectionLabelShort_fr==\u0627\u0644\u0648\u062b\u0627\u0626\u0642 \u0627\u0644\u0645\u062a\u0627\u062d\u0629 \u0628\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629','SectionLabel_en==\u0627\u0644\u0627\u062c\u062a\u0645\u0627\u0639 \u0627\u0644\u0625\u0642\u0644\u064a\u0645\u064a \u0627\u0644\u062e\u0627\u0645\u0633 \u0639\u0634\u0631 \u0644\u0622\u0633\u064a\u0627 \u0648\u0627\u0644\u0645\u062d\u064a\u0637 \u0627\u0644\u0647\u0627\u062f\u0626 -  \u0627\u0644\u0648\u062b\u0627\u0626\u0642 \u0627\u0644\u0645\u062a\u0627\u062d\u0629 \u0628\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629','SectionLabel_es==\u0627\u0644\u0627\u062c\u062a\u0645\u0627\u0639 \u0627\u0644\u0625\u0642\u0644\u064a\u0645\u064a \u0627\u0644\u062e\u0627\u0645\u0633 \u0639\u0634\u0631 \u0644\u0622\u0633\u064a\u0627 \u0648\u0627\u0644\u0645\u062d\u064a\u0637 \u0627\u0644\u0647\u0627\u062f\u0626 -  \u0627\u0644\u0648\u062b\u0627\u0626\u0642 \u0627\u0644\u0645\u062a\u0627\u062d\u0629 \u0628\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629','SectionLabel_fr==\u0627\u0644\u0627\u062c\u062a\u0645\u0627\u0639 \u0627\u0644\u0625\u0642\u0644\u064a\u0645\u064a \u0627\u0644\u062e\u0627\u0645\u0633 \u0639\u0634\u0631 \u0644\u0622\u0633\u064a\u0627 \u0648\u0627\u0644\u0645\u062d\u064a\u0637 \u0627\u0644\u0647\u0627\u062f\u0626 -  \u0627\u0644\u0648\u062b\u0627\u0626\u0642 \u0627\u0644\u0645\u062a\u0627\u062d\u0629 \u0628\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_2_2_0_4=g_navNode_4_2_2_0.addNode('4750','Documents in Chinese',ssUrlPrefix + 'meetings-and-events/regional-meetings/asia/aprm-15/chinese/index.htm','Hide==TRUE','SectionLabelShort_en==\u5907\u6709\u4e2d\u6587\u6587\u4ef6','SectionLabelShort_es==\u5907\u6709\u4e2d\u6587\u6587\u4ef6','SectionLabelShort_fr==\u5907\u6709\u4e2d\u6587\u6587\u4ef6','SectionLabel_en==\u7b2c15 \u5c4a\u4e9a\u592a\u533a\u57df\u4f1a\u8bae\x3b\u5907\u6709\u4e2d\u6587\u6587\u4ef6','SectionLabel_es==\u7b2c15 \u5c4a\u4e9a\u592a\u533a\u57df\u4f1a\u8bae\x3b\u5907\u6709\u4e2d\u6587\u6587\u4ef6','SectionLabel_fr==\u7b2c15 \u5c4a\u4e9a\u592a\u533a\u57df\u4f1a\u8bae\x3b\u5907\u6709\u4e2d\u6587\u6587\u4ef6','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_2_3=g_navNode_4_2.addNode('528','Europe and Central Asia',ssUrlPrefix + 'meetings-and-events/regional-meetings/europe-and-central-asia/index.htm','SectionLabelShort_en==Europe and Central Asia','SectionLabelShort_es==Europa y Asia Central','SectionLabelShort_fr==Europe et l\\x27Asie centrale','SectionLabel_en==European Regional Meetings ','SectionLabel_es==Reuniones Regionales Europeas','SectionLabel_fr==R\xe9unions r\xe9gionales europ\xe9ennes ','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_3=g_navNode_4.addNode('342','Events',ssUrlPrefix + 'meetings-and-events/events/index.htm','SectionLabel_en==Events','SectionLabel_es==Eventos','SectionLabel_fr==Ev\xe9nements','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_3_0=g_navNode_4_3.addNode('378','ILC.99',ssUrlPrefix + 'meetings-and-events/events/ilc-99/index.htm','Hide==TRUE');
g_navNode_4_3_0_0=g_navNode_4_3_0.addNode('514','Press releases',ssUrlPrefix + 'meetings-and-events/events/ilc-99/press-releases/index.htm');
g_navNode_4_3_0_1=g_navNode_4_3_0.addNode('515','Features',ssUrlPrefix + 'meetings-and-events/events/ilc-99/features/index.htm');
g_navNode_4_3_0_2=g_navNode_4_3_0.addNode('516','I-news',ssUrlPrefix + 'meetings-and-events/events/ilc-99/news/index.htm');
g_navNode_4_3_0_3=g_navNode_4_3_0.addNode('517','Video',ssUrlPrefix + 'meetings-and-events/events/ilc-99/video/index.htm');
g_navNode_4_3_0_4=g_navNode_4_3_0.addNode('518','Statements',ssUrlPrefix + 'meetings-and-events/events/ilc-99/statements/index.htm');
g_navNode_4_3_0_5=g_navNode_4_3_0.addNode('519','Audio',ssUrlPrefix + 'meetings-and-events/events/ilc-99/audio/index.htm');
g_navNode_4_3_0_6=g_navNode_4_3_0.addNode('520','Photos',ssUrlPrefix + 'meetings-and-events/events/ilc-99/photos/index.htm');
g_navNode_4_3_0_7=g_navNode_4_3_0.addNode('521','Domestic workers',ssUrlPrefix + 'meetings-and-events/events/ilc-99/domestic-workers/index.htm');
g_navNode_4_3_0_8=g_navNode_4_3_0.addNode('522','HIV/AIDS',ssUrlPrefix + 'meetings-and-events/events/ilc-99/hiv-aids/index.htm');
g_navNode_4_3_0_9=g_navNode_4_3_0.addNode('523','Child labour',ssUrlPrefix + 'meetings-and-events/events/ilc-99/child-labour/index.htm');
g_navNode_4_3_1=g_navNode_4_3.addNode('375','ILC.98',ssUrlPrefix + 'meetings-and-events/events/ilc-98/index.htm','Hide==TRUE');
g_navNode_4_3_1_0=g_navNode_4_3_1.addNode('480','Press releases',ssUrlPrefix + 'meetings-and-events/events/ilc-98/press-releases/index.htm');
g_navNode_4_3_1_1=g_navNode_4_3_1.addNode('481','Features',ssUrlPrefix + 'meetings-and-events/events/ilc-98/features/index.htm');
g_navNode_4_3_1_2=g_navNode_4_3_1.addNode('482','I-news',ssUrlPrefix + 'meetings-and-events/events/ilc-98/news/index.htm');
g_navNode_4_3_1_3=g_navNode_4_3_1.addNode('484','Video',ssUrlPrefix + 'meetings-and-events/events/ilc-98/video/index.htm');
g_navNode_4_3_1_4=g_navNode_4_3_1.addNode('485','Statements',ssUrlPrefix + 'meetings-and-events/events/ilc-98/statements/index.htm','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_3_1_5=g_navNode_4_3_1.addNode('486','Interviews',ssUrlPrefix + 'meetings-and-events/events/ilc-98/interviews/index.htm');
g_navNode_4_3_1_6=g_navNode_4_3_1.addNode('487','Photos',ssUrlPrefix + 'meetings-and-events/events/ilc-98/photos/index.htm');
g_navNode_4_3_2=g_navNode_4_3.addNode('377','Hague Conference',ssUrlPrefix + 'meetings-and-events/events/hague-conference/index.htm','Hide==TRUE','SectionLabel_en==Global Child Labour Conference 2010','SectionLabel_es==Conferencia mundial sobre trabajo infantil 2010','SectionLabel_fr==Conf\xe9rence mondiale sur le travail des enfants 2010','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_3_3=g_navNode_4_3.addNode('376','Global Jobs Summit',ssUrlPrefix + 'meetings-and-events/events/global-jobs-summit/index.htm','Hide==TRUE','SectionLabel_en==ILO Summit on the Global Jobs Crisis - 15-17 June 2009 ','SectionLabel_es==Cumbre de la OIT sobre la Crisis Mundial del Empleo - 15-17 de junio 2009 ','SectionLabel_fr==Sommet de l\u2019OIT sur la crise mondiale de l\u2019emploi - 15-17 juin 2009');
g_navNode_4_3_4=g_navNode_4_3.addNode('4446','ILO participation in the Fourth United Nations Conference on Least Developed Countries',ssUrlPrefix + 'meetings-and-events/events/conference-on-least-developed-countries/index.htm','Hide==TRUE','SectionLabel_en==ILO participation in the Fourth United Nations Conference on Least Developed Countries','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_3_5=g_navNode_4_3.addNode('4458','World Day Against Child Labour',ssUrlPrefix + 'meetings-and-events/events/world-day-against-child-labour/index.htm','Hide==TRUE','SectionLabel_en==World Day Against Child Labour','SectionLabel_es==D\xeda mundial contra el trabajo infantil','SectionLabel_fr==Journ\xe9e mondiale contre le travail des enfants','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_3_5_0=g_navNode_4_3_5.addNode('4459','World Day Against Child Labour 2011',ssUrlPrefix + 'meetings-and-events/events/world-day-against-child-labour/2011/index.htm','Hide==TRUE','SectionLabel_en==World Day Against Child Labour 2011','SectionLabel_es==D\xeda mundial contra el trabajo infantil 2011','SectionLabel_fr==Journ\xe9e mondiale contre le travail des enfants 2011','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_3_6=g_navNode_4_3.addNode('4617','XIX World Congress on Safety and Health at Work',ssUrlPrefix + 'meetings-and-events/events/world-congress-on-safety-and-health-at-work/index.htm','Hide==TRUE','SectionLabel_en==XIX World Congress on Safety and Health at Work','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_4=g_navNode_4.addNode('343','Campaigns',ssUrlPrefix + 'meetings-and-events/campaigns/index.htm','SectionLabel_en==Campaigns','SectionLabel_es==Campa\xf1as ','SectionLabel_fr==Campagnes','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_4_4_0=g_navNode_4_4.addNode('4377','Voices on Social Justice',ssUrlPrefix + 'meetings-and-events/campaigns/voices-on-social-justice/index.htm','Hide==TRUE','SectionLabel_en==Voices on Social Justice','SectionLabel_es==Voces sobre la Justicia Social','SectionLabel_fr==Des voix pour la justice sociale','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_5=g_navNode_Root.addNode('154','Programmes and projects',ssUrlPrefix + 'programmes-and-projects/index.htm','SectionLabel_en==Programmes and projects','SectionLabel_es==Programas y proyectos','SectionLabel_fr==Programmes et projets','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_6=g_navNode_Root.addNode('155','Publications',ssUrlPrefix + 'publications/index.htm','SectionLabel_en==Publications','SectionLabel_es==Publicaciones','SectionLabel_fr==Publications','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_6_0=g_navNode_6.addNode('344','Books and reports',ssUrlPrefix + 'publications/books/index.htm','SectionLabel_en==Books and reports','SectionLabel_es==Libros y informes','SectionLabel_fr==Livres et rapports','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_6_0_0=g_navNode_6_0.addNode('467','Forthcoming publications',ssUrlPrefix + 'publications/books/forthcoming-publications/index.htm','SectionLabel_en==Forthcoming publications','SectionLabel_es==Pr\xf3ximamente ','SectionLabel_fr==A para\xeetre prochainement ','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_6_0_1=g_navNode_6_0.addNode('4939','Global Employment Trends',ssUrlPrefix + 'publications/books/global-employment-trends/index.htm','SectionLabel_en==Global Employment Trends','SectionLabel_es==Tendencias Mundiales del Empleo','SectionLabel_fr==Tendances mondiales de l\\x27emploi','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_6_2=g_navNode_6.addNode('346','Meeting reports',ssUrlPrefix + 'publications/meeting-reports/index.htm','SectionLabel_en==Meeting documents','SectionLabel_es==Documentos de reuniones','SectionLabel_fr==Documents de r\xe9unions','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_6_3=g_navNode_6.addNode('347','Working papers',ssUrlPrefix + 'publications/working-papers/index.htm','SectionLabel_en==Working papers','SectionLabel_es==Documentos de trabajo','SectionLabel_fr==Documents de travail','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_6_5=g_navNode_6.addNode('349','Magazines and journals',ssUrlPrefix + 'publications/magazines-and-journals/index.htm','SectionLabel_en==Magazines and journals','SectionLabel_es==Revistas y peri\xf3dicos','SectionLabel_fr==P\xe9riodiques','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_6_5_0=g_navNode_6_5.addNode('4333','Periodicals 2011',ssUrlPrefix + 'publications/magazines-and-journals/periodicals/index.htm','SectionLabel_en==Periodicals 2011','SectionLabel_es==Publicaciones peri\xf3dicas 2011','SectionLabel_fr==P\xe9riodiques 2011','maxAge==14400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_6_5_1=g_navNode_6_5.addNode('4394','World of Work magazine',ssUrlPrefix + 'publications/magazines-and-journals/world-of-work-magazine/index.htm','SectionLabel_en==World of Work magazine','SectionLabel_es==Revista Trabajo','SectionLabel_fr==Magazine Travail','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_6_5_1_0=g_navNode_6_5_1.addNode('4395','Articles',ssUrlPrefix + 'publications/magazines-and-journals/world-of-work-magazine/articles/index.htm','SectionLabel_en==Articles','SectionLabel_es==Reportajes','SectionLabel_fr==Reportages','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_6_5_1_0_0=g_navNode_6_5_1_0.addNode('4644','ILO in History',ssUrlPrefix + 'publications/magazines-and-journals/world-of-work-magazine/articles/ilo-in-history/index.htm','Hide==FALSE','SectionLabel_en==ILO in history','SectionLabel_es==La OIT en la Historia','SectionLabel_fr==L\\x27OIT dans l\\x27Histoire','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_6_5_1_1=g_navNode_6_5_1.addNode('4396','Issues',ssUrlPrefix + 'publications/magazines-and-journals/world-of-work-magazine/issues/index.htm','SectionLabelShort_en==Issues','SectionLabelShort_es==N\xfameros','SectionLabelShort_fr==Editions','SectionLabel_en==World of Work magazine issues','SectionLabel_es==N\xfameros de la revista Trabajo','SectionLabel_fr==Editions du magazine Travail','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7=g_navNode_Root.addNode('156','Standards',ssUrlPrefix + 'standards/index.htm','SectionLabel_en==Labour standards','SectionLabel_es==Normas del trabajo','SectionLabel_fr==Normes du travail','maxAge==3600','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_0=g_navNode_7.addNode('350','Introduction to International Labour Standards',ssUrlPrefix + 'standards/introduction-to-international-labour-standards/index.htm','SectionLabel_en==Introduction to International Labour Standards','SectionLabel_es==Introducci\xf3n a las normas','SectionLabel_fr==Introduction aux normes','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_0_0=g_navNode_7_0.addNode('380','The need for social justice',ssUrlPrefix + 'standards/introduction-to-international-labour-standards/need-for-social-justice/index.htm','SectionLabel_en==The need for social justice','SectionLabel_es==La necesidad de la justicia social','SectionLabel_fr==Le besoin de justice sociale','maxAge==14400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_0_1=g_navNode_7_0.addNode('381','The benefits of International Labour Standards',ssUrlPrefix + 'standards/introduction-to-international-labour-standards/the-benefits-of-international-labour-standards/index.htm','SectionLabel_en==The benefits of International Labour Standards','SectionLabel_es==Los beneficios de las Normas','SectionLabel_fr==Les b\xe9n\xe9fices des Normes','maxAge==14400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_0_2=g_navNode_7_0.addNode('382','Conventions and recommendations',ssUrlPrefix + 'standards/introduction-to-international-labour-standards/conventions-and-recommendations/index.htm','SectionLabel_en==Conventions and Recommendations','SectionLabel_es==Convenios y recomendaciones','SectionLabel_fr==Conventions et recommandations','maxAge==14400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_0_3=g_navNode_7_0.addNode('383','How International Labour Standards are created',ssUrlPrefix + 'standards/introduction-to-international-labour-standards/international-labour-standards-creation/index.htm','SectionLabel_en==How International Labour Standards are created','SectionLabel_es==C\xf3mo las Normas se crean','SectionLabel_fr==Comment les Normes sont \xe9labor\xe9es','maxAge==14400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_0_4=g_navNode_7_0.addNode('384','How International Labour Standards are used',ssUrlPrefix + 'standards/introduction-to-international-labour-standards/international-labour-standards-use/index.htm','SectionLabel_en==How International Labour Standards are used','SectionLabel_es==C\xf3mo las Normas se utilizan','SectionLabel_fr==Comment les Normes sont utilis\xe9es','maxAge==14400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1=g_navNode_7.addNode('351','Subjects covered by International Labour Standards',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/index.htm','SectionLabel_en==Subjects covered by International Labour Standards','SectionLabel_es==Temas comprendidos en las normas','SectionLabel_fr==Th\xe8mes trait\xe9s dans les normes','maxAge==14400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_0=g_navNode_7_1.addNode('385','Freedom of association',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/freedom-of-association/index.htm','SectionLabel_en==Freedom of association','SectionLabel_es==Libertad sindical ','SectionLabel_fr==Libert\xe9 syndicale','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_1=g_navNode_7_1.addNode('386','Collective bargaining',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/collective-bargaining/index.htm','SectionLabel_en==Collective bargaining','SectionLabel_es==Negociaci\xf3n colectiva','SectionLabel_fr==N\xe9gociation collective','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_2=g_navNode_7_1.addNode('387','Forced labour',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/forced-labour/index.htm','SectionLabel_en==Forced labour','SectionLabel_es==Trabajo forzoso','SectionLabel_fr==Travail forc\xe9','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_3=g_navNode_7_1.addNode('388','Child labour',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/child-labour/index.htm','SectionLabel_en==Child labour','SectionLabel_es==Trabajo infantil ','SectionLabel_fr==Travail des enfants','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_4=g_navNode_7_1.addNode('389','Equality of opportunity and treatment ',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/equality-of-opportunity-and-treatment/index.htm','SectionLabel_en==Equality of opportunity and treatment','SectionLabel_es==Igualdad de oportunidades y de trato','SectionLabel_fr==\xc9galit\xe9 de chances et de traitement ','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_5=g_navNode_7_1.addNode('390','Tripartite consultation',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/tripartite-consultation/index.htm','SectionLabel_en==Tripartite consultation','SectionLabel_es==Consulta tripartita','SectionLabel_fr==Consultations tripartites','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_6=g_navNode_7_1.addNode('391','Labour administration',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/labour-administration/index.htm','SectionLabel_en==Labour administration','SectionLabel_es==Administraci\xf3n del trabajo','SectionLabel_fr==Administration du travail','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_7=g_navNode_7_1.addNode('392','Labour inspection',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/labour-inspection/index.htm','SectionLabel_en==Labour inspection','SectionLabel_es==Inspecci\xf3n del trabajo','SectionLabel_fr==Inspection du travail','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_8=g_navNode_7_1.addNode('393','Employment policy',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/employment-policy/index.htm','SectionLabel_en==Employment policy','SectionLabel_es==Pol\xedtica del empleo','SectionLabel_fr==Politique de l\\x27emploi','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_9=g_navNode_7_1.addNode('394','Employment promotion',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/employment-promotion/index.htm','SectionLabel_en==Employment promotion','SectionLabel_es==Promoci\xf3n del empleo ','SectionLabel_fr==Promotion de l\\x27emploi','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_10=g_navNode_7_1.addNode('395','Vocational guidance and training',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/vocational-guidance-and-training/index.htm','SectionLabel_en==Vocational guidance and training','SectionLabel_es==Orientaci\xf3n y formaci\xf3n profesional','SectionLabel_fr==Orientation et formation professionnelles ','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_11=g_navNode_7_1.addNode('396','Employment security',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/employment-security/index.htm','SectionLabel_en==Employment security','SectionLabel_es==Seguridad en el empleo ','SectionLabel_fr==S\xe9curit\xe9 de l\\x27emploi ','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_12=g_navNode_7_1.addNode('397','Wages',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/wages/index.htm','SectionLabel_en==Wages','SectionLabel_es==Salarios','SectionLabel_fr==Salaires','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_13=g_navNode_7_1.addNode('398','Working time',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/working-time/index.htm','SectionLabel_en==Working time','SectionLabel_es==Tiempo de trabajo','SectionLabel_fr==Temps de travail','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_14=g_navNode_7_1.addNode('399','Occupational safety and health',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/occupational-safety-and-health/index.htm','SectionLabel_en==Occupational safety and health','SectionLabel_es==Seguridad y salud en el trabajo','SectionLabel_fr==S\xe9curit\xe9 et sant\xe9 au travail','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_15=g_navNode_7_1.addNode('400','Social security',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/social-security/index.htm','SectionLabel_en==Social security','SectionLabel_es==Seguridad social','SectionLabel_fr==S\xe9curit\xe9 sociale','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_16=g_navNode_7_1.addNode('401','Maternity protection',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/maternity-protection/index.htm','SectionLabel_en==Maternity protection','SectionLabel_es==Protecci\xf3n de la maternidad','SectionLabel_fr==Protection de la maternit\xe9','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_17=g_navNode_7_1.addNode('402','Social policy',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/social-policy/index.htm','SectionLabel_en==Social policy','SectionLabel_es==Pol\xedtica social','SectionLabel_fr==Politique sociale','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_18=g_navNode_7_1.addNode('403','Migrant workers',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/migrant-workers/index.htm','SectionLabel_en==Migrant workers','SectionLabel_es==Trabajadores migrantes','SectionLabel_fr==Travailleurs migrants','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_19=g_navNode_7_1.addNode('4360','HIV/AIDS',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/hiv-aids/index.htm','SectionLabel_en==HIV/AIDS','SectionLabel_es==VIH/SIDA','SectionLabel_fr==VIH/SIDA','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_20=g_navNode_7_1.addNode('404','Seafarers',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/seafarers/index.htm','SectionLabel_en==Seafarers','SectionLabel_es==Gente de mar','SectionLabel_fr==Gens de mer','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_21=g_navNode_7_1.addNode('405','Fishers',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/fishers/index.htm','SectionLabel_en==Fishers','SectionLabel_es==Pescadores','SectionLabel_fr==P\xeacheurs','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_22=g_navNode_7_1.addNode('406','Dock workers',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/dock-workers/index.htm','SectionLabel_en==Dock workers','SectionLabel_es==Trabajadores portuarios','SectionLabel_fr==Dockers','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_23=g_navNode_7_1.addNode('407','Indigenous and tribal peoples',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/indigenous-and-tribal-peoples/index.htm','SectionLabel_en==Indigenous and tribal peoples','SectionLabel_es==Pueblos ind\xedgenas y tribales','SectionLabel_fr==Peuples indig\xe8nes et tribaux','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_1_24=g_navNode_7_1.addNode('408','Other specific categories of workers',ssUrlPrefix + 'standards/subjects-covered-by-international-labour-standards/specific-categories-of-workers/index.htm','SectionLabel_en==Other specific categories of workers','SectionLabel_es==Otras categor\xedas particulares de trabajadores','SectionLabel_fr==Autres cat\xe9gories particuli\xe8res de travailleurs','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_2=g_navNode_7.addNode('352','Maritime Labour Convention',ssUrlPrefix + 'standards/maritime-labour-convention/index.htm','SectionLabel_en==Maritime Labour Convention','SectionLabel_es==Convenio sobre el trabajo mar\xedtimo','SectionLabel_fr==Convention du travail maritime','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_4=g_navNode_7.addNode('353','Applying and promoting International Labour Standards',ssUrlPrefix + 'standards/applying-and-promoting-international-labour-standards/index.htm','SectionLabel_en==Applying and promoting International Labour Standards','SectionLabel_es==Aplicaci\xf3n y promoci\xf3n de las normas','SectionLabel_fr==Application et promotion des normes','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_4_0=g_navNode_7_4.addNode('414','Committee of Experts on the Application of Conventions and Recommendations',ssUrlPrefix + 'standards/applying-and-promoting-international-labour-standards/committee-of-experts-on-the-application-of-conventions-and-recommendations/index.htm','SectionLabel_en==Committee of Experts on the Application of Conventions and Recommendations','SectionLabel_es==La Comisi\xf3n de Expertos en Aplicaci\xf3n de Convenios y Recomendaciones','SectionLabel_fr==La Commission d\\x27experts pour l\\x27application des conventions et recommandations','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_4_1=g_navNode_7_4.addNode('415','Conference Committee on the Application of Standards',ssUrlPrefix + 'standards/applying-and-promoting-international-labour-standards/conference-committee-on-the-application-of-standards/index.htm','SectionLabel_en==Conference Committee on the Application of Standards','SectionLabel_es==La Comisi\xf3n de Aplicaci\xf3n de Normas de la Conferencia','SectionLabel_fr==La Commission de l\\x27application des normes de la Conf\xe9rence','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_4_2=g_navNode_7_4.addNode('416','The impact of the regular supervisory system',ssUrlPrefix + 'standards/applying-and-promoting-international-labour-standards/the-impact-of-the-regular-supervisory-system/index.htm','SectionLabel_en==The impact of the regular supervisory system','SectionLabel_es==El impacto del sistema de control regular','SectionLabel_fr==L\\x27impact du syst\xe8me de contr\xf4le r\xe9gulier','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_4_3=g_navNode_7_4.addNode('417','Representations',ssUrlPrefix + 'standards/applying-and-promoting-international-labour-standards/representations/index.htm','SectionLabel_en==Representations','SectionLabel_es==Reclamaciones','SectionLabel_fr==R\xe9clamations','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_4_4=g_navNode_7_4.addNode('418','Complaints',ssUrlPrefix + 'standards/applying-and-promoting-international-labour-standards/complaints/index.htm','SectionLabel_en==Complaints','SectionLabel_es==Quejas','SectionLabel_fr==Plaintes','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_4_5=g_navNode_7_4.addNode('419','Committee on Freedom of Association',ssUrlPrefix + 'standards/applying-and-promoting-international-labour-standards/committee-on-freedom-of-association/index.htm','SectionLabel_en==Committee on Freedom of Association','SectionLabel_es==Libertad sindical','SectionLabel_fr==Le Comit\xe9 de la libert\xe9 syndicale','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_4_6=g_navNode_7_4.addNode('420','General Surveys',ssUrlPrefix + 'standards/applying-and-promoting-international-labour-standards/general-surveys/index.htm','SectionLabel_en==General Surveys','SectionLabel_es==Estudios Generales','SectionLabel_fr==Etudes d\\x27ensemble','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_4_7=g_navNode_7_4.addNode('421','Technical assistance and training',ssUrlPrefix + 'standards/applying-and-promoting-international-labour-standards/technical-assistance-and-training/index.htm','SectionLabel_en==Technical assistance and training','SectionLabel_es==Asistencia t\xe9cnica y formaci\xf3n','SectionLabel_fr==L\\x27assistance technique et la formation','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_5=g_navNode_7.addNode('354','Information resources and publications',ssUrlPrefix + 'standards/information-resources-and-publications/index.htm','SectionLabel_en==Information resources and publications','SectionLabel_es==Recursos de informaci\xf3n y publicaciones','SectionLabel_fr==Sources d\\x27information et publications','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_5_0=g_navNode_7_5.addNode('422','Key ILO bodies and documents',ssUrlPrefix + 'standards/information-resources-and-publications/key-ilo-bodies-and-documents/index.htm','SectionLabel_en==Key ILO bodies and documents','SectionLabel_es==Organos y documentos fundamentales de la OIT','SectionLabel_fr==Principaux organes et documents de l\\x27OIT ','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_5_1=g_navNode_7_5.addNode('423','Publications',ssUrlPrefix + 'standards/information-resources-and-publications/publications/index.htm','SectionLabel_en==Publications','SectionLabel_es==Publicaciones','SectionLabel_fr==Publications','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_5_2=g_navNode_7_5.addNode('424','Databases',ssUrlPrefix + 'standards/information-resources-and-publications/databases/index.htm','SectionLabel_en==Databases','SectionLabel_es==Bases de datos','SectionLabel_fr==Bases de donn\xe9es ','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_5_3=g_navNode_7_5.addNode('425','Free Trade Agreements and Labour Rights ',ssUrlPrefix + 'standards/information-resources-and-publications/free-trade-agreements-and-labour-rights/index.htm','SectionLabel_en==Free Trade Agreements and Labour Rights','SectionLabel_es==Acuerdos de libre comercio y derechos laborales','SectionLabel_fr==Accords de libre-\xe9change et droit des travailleurs','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_5_4=g_navNode_7_5.addNode('4351','News',ssUrlPrefix + 'standards/information-resources-and-publications/news/index.htm','SectionLabel_en==News','SectionLabel_es==Noticias','SectionLabel_fr==Actualit\xe9s','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_7_6=g_navNode_7.addNode('355','International Labour Standards Policy',ssUrlPrefix + 'standards/international-labour-standards-policy/index.htm','SectionLabel_en==International Labour Standards Policy','SectionLabel_es==Pol\xedtica normativa','SectionLabel_fr==Politique normative','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8=g_navNode_Root.addNode('159','Statistics and databases',ssUrlPrefix + 'statistics-and-databases/index.htm','SectionLabel_en==Statistics and databases','SectionLabel_es==Estad\xedsticas y bases de datos','SectionLabel_fr==Statistiques et donn\xe9es','maxAge==7200','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0=g_navNode_8.addNode('260','Statistics overview and topics',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/index.htm','SectionLabel_en==Overview and topics','SectionLabel_es==Introducci\xf3n y temas','SectionLabel_fr==Introduction et sujets','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_0=g_navNode_8_0.addNode('356','Employment and unemployment',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/employment-and-unemployment/index.htm','SectionLabel_en==Employment and unemployment','SectionLabel_es==Empleo y desempleo','SectionLabel_fr==Emploi et ch\xf4mage','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_1=g_navNode_8_0.addNode('357','Gender',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/gender/index.htm','SectionLabel_en==Gender','SectionLabel_es==G\xe9nero','SectionLabel_fr==Genre','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_1_0=g_navNode_8_0_1.addNode('430','Current international guidelines',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/gender/current-international-guidelines/index.htm','SectionLabel_en==Current international guidelines','SectionLabel_es==Directivos de actualidad','SectionLabel_fr==Directives en vigueur','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_1_1=g_navNode_8_0_1.addNode('431','Importance and applications',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/gender/importance-and-applications/index.htm','SectionLabel_en==Importance and applications','SectionLabel_es==Importancia y aplicaciones','SectionLabel_fr==Importance et applications','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_1_2=g_navNode_8_0_1.addNode('432','National statistics',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/gender/national-statistics/index.htm','SectionLabel_en==National statistics','SectionLabel_es==Estad\xedsticas nacionales','SectionLabel_fr==Statistiques nationales','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_1_3=g_navNode_8_0_1.addNode('433','History',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/gender/history/index.htm','SectionLabel_en==History','SectionLabel_es==Historia','SectionLabel_fr==Histoire','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_1_4=g_navNode_8_0_1.addNode('434','Developmental activities',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/gender/developmental-activities/index.htm','SectionLabel_en==Developmental activities','SectionLabel_es==Actividades de desarrollo','SectionLabel_fr==Activit\xe9s de d\xe9veloppement','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_1_5=g_navNode_8_0_1.addNode('435','References',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/gender/references/index.htm','SectionLabel_en==References','SectionLabel_es==Referencias','SectionLabel_fr==R\xe9f\xe9rences','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_2=g_navNode_8_0.addNode('358','Income',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/income/index.htm','SectionLabel_en==Income','SectionLabel_es==Ingreso','SectionLabel_fr==Revenu','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_2_0=g_navNode_8_0_2.addNode('436','Current guidelines',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/income/current-guidelines/index.htm','SectionLabel_en==Current guidelines','SectionLabel_es==Directivos de actualidad','SectionLabel_fr==Directives en vigueur','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_2_1=g_navNode_8_0_2.addNode('437','Importance and applications',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/income/importance-and-applications/index.htm','SectionLabel_en==Importance and applications','SectionLabel_es==Importancia y aplicaciones','SectionLabel_fr==Importance et applications','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_2_2=g_navNode_8_0_2.addNode('438','History',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/income/history/index.htm','SectionLabel_en==History','SectionLabel_es==Historia','SectionLabel_fr==Histoire','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_2_3=g_navNode_8_0_2.addNode('439','National statistics and ILO compilation activities',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/income/national-statistics-and-ilo-compilation-activities/index.htm','SectionLabel_en==National statistics and ILO compilation activities','SectionLabel_es==Estad\xedsticas nacionales','SectionLabel_fr==Statistiques nationales','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_7=g_navNode_8_0.addNode('359','Safety and health',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/safety-and-health/index.htm','SectionLabel_en==Safety and health','SectionLabel_es==Salud y seguridad','SectionLabel_fr==S\xe9curit\xe9 et sant\xe9','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_8=g_navNode_8_0.addNode('360','Social dialogue',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/social-dialogue/index.htm','SectionLabel_en==Social dialogue','SectionLabel_es==Di\xe1logo social','SectionLabel_fr==Dialogue social','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_9=g_navNode_8_0.addNode('361','Status in employment',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/status-in-employment/index.htm','SectionLabel_en==Status in employment','SectionLabel_es==Situaci\xf3n en el Empleo','SectionLabel_fr==Situation dans la profession','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_9_0=g_navNode_8_0_9.addNode('440','Current guidelines',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/status-in-employment/current-guidelines/index.htm','SectionLabel_en==Current guidelines','SectionLabel_es==Directivos de actualidad','SectionLabel_fr==Directives en vigueur','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_9_1=g_navNode_8_0_9.addNode('441','Importance and applications',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/status-in-employment/importance-and-applications/index.htm','SectionLabel_en==Importance and applications','SectionLabel_es==Importancia y aplicaciones','SectionLabel_fr==Importance et applications','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_9_2=g_navNode_8_0_9.addNode('442','History',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/status-in-employment/history/index.htm','SectionLabel_en==History','SectionLabel_es==Historia','SectionLabel_fr==Histoire','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_9_3=g_navNode_8_0_9.addNode('443','National statistics and ILO compilation activities',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/status-in-employment/national-statistics-and-ilo-compilation-activities/index.htm','SectionLabel_en==National statistics and ILO compilation activities','SectionLabel_es==Estad\xedsticas nacionales','SectionLabel_fr==Statistiques nationales','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_10=g_navNode_8_0.addNode('362','Underemployment',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/underemployment/index.htm','SectionLabel_en==Underemployment','SectionLabel_es==Subempleo','SectionLabel_fr==Sous-emploi','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_10_0=g_navNode_8_0_10.addNode('444','Current guidelines',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/underemployment/current-guidelines/index.htm','SectionLabel_en==Current guidelines','SectionLabel_es==Directivos de actualidad','SectionLabel_fr==Directives en vigueur','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_10_1=g_navNode_8_0_10.addNode('445','Importance and applications',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/underemployment/importance-and-applications/index.htm','SectionLabel_en==Importance and applications','SectionLabel_es==Importancia y aplicaciones','SectionLabel_fr==Importance et applications','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_10_2=g_navNode_8_0_10.addNode('446','History',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/underemployment/history/index.htm','SectionLabel_en==History','SectionLabel_fr==Histoire','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_10_3=g_navNode_8_0_10.addNode('450','National statistics and ILO compilation activities',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/underemployment/national-statistics-and-ilo-compilation-activities/index.htm','SectionLabel_en==National statistics and ILO compilation activities','SectionLabel_fr==Statistiques nationales','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_10_4=g_navNode_8_0_10.addNode('456','Developmental activities',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/underemployment/developmental-activities/index.htm','SectionLabel_en==Developmental activities','SectionLabel_fr==Activit\xe9s de d\xe9veloppement','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_11=g_navNode_8_0.addNode('363','Working time',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/working-time/index.htm','SectionLabel_en==Working time','SectionLabel_es==Horas de trabajo','SectionLabel_fr==Dur\xe9e du travail','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_11_0=g_navNode_8_0_11.addNode('457','Current guidelines',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/working-time/current-guidelines/index.htm','SectionLabel_en==Current guidelines','SectionLabel_es==Directivos de actualidad','SectionLabel_fr==Directives en vigueur','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_11_1=g_navNode_8_0_11.addNode('458','Importance and applications',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/working-time/importance-and-applications/index.htm','SectionLabel_en==Importance and applications','SectionLabel_es==Importancia y aplicaciones','SectionLabel_fr==Importance et applications','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_11_2=g_navNode_8_0_11.addNode('459','History',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/working-time/history/index.htm','SectionLabel_en==History','SectionLabel_es==Historia','SectionLabel_fr==Histoire','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_11_3=g_navNode_8_0_11.addNode('460','National statistics and ILO compilation activities',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/working-time/national-statistics-and-ilo-compilation-activities/index.htm','SectionLabel_en==National statistics and ILO compilation activities','SectionLabel_es==Estad\xedsticas nacionales','SectionLabel_fr==Statistiques nationales','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_11_4=g_navNode_8_0_11.addNode('461','Developmental activities',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/working-time/developmental-activities/index.htm','SectionLabel_en==Developmental activities','SectionLabel_es==Actividades de desarrollo','SectionLabel_fr==Activit\xe9s de d\xe9veloppement ','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_0_11_5=g_navNode_8_0_11.addNode('462','References',ssUrlPrefix + 'statistics-and-databases/statistics-overview-and-topics/working-time/references/index.htm','SectionLabel_en==References','SectionLabel_es==Referencias','SectionLabel_fr==R\xe9f\xe9rences','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_1=g_navNode_8.addNode('261','Standards and guidelines',ssUrlPrefix + 'statistics-and-databases/standards-and-guidelines/index.htm','SectionLabel_en==Standards and guidelines','SectionLabel_es==Normas y directivos','SectionLabel_fr==Normes et directives','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_1_0=g_navNode_8_1.addNode('364','Resolutions adopted by International Conferences of Labour statisticians',ssUrlPrefix + 'statistics-and-databases/standards-and-guidelines/resolutions-adopted-by-international-conferences-of-labour-statisticians/index.htm','SectionLabel_en==Resolutions adopted by International Conferences of Labour statisticians','SectionLabel_es==Resoluciones adoptadas por la Conferencia Internacional de Estad\xedsticos del Trabajo ','SectionLabel_fr==Resolutions adopt\xe9es par les Conf\xe9rences Internationales des Statisticiens du Travail','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_1_1=g_navNode_8_1.addNode('365','Guidelines adopted by International Conferences of Labour statisticians',ssUrlPrefix + 'statistics-and-databases/standards-and-guidelines/guidelines-adopted-by-international-conferences-of-labour-statisticians/index.htm','SectionLabel_en==Guidelines adopted by International Conferences of Labour statisticians','SectionLabel_es==Directrices adoptadas por la Conferencia Internacional de Estad\xedsticos del Trabajo ','SectionLabel_fr==Directives adopt\xe9es par les Conf\xe9rences Internationales des Statisticiens du Travail','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_2=g_navNode_8.addNode('366','Classifications',ssUrlPrefix + 'statistics-and-databases/classifications/index.htm','SectionLabel_en==Classifications','SectionLabel_es==Clasificaci\xf3nes','SectionLabel_fr==Classifications','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_3=g_navNode_8.addNode('367','Meetings and events',ssUrlPrefix + 'statistics-and-databases/meetings-and-events/index.htm','SectionLabel_en==Meetings and events','SectionLabel_es==Reuniones y eventos','SectionLabel_fr==R\xe9unions et ev\xe9nements','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_3_0=g_navNode_8_3.addNode('368','International Conference of Labour Statisticians',ssUrlPrefix + 'statistics-and-databases/meetings-and-events/international-conference-of-labour-statisticians/index.htm','SectionLabel_en==International Conference of Labour Statisticians','SectionLabel_es==Conferencia Internacional de Estad\xedsticos del Trabajo','SectionLabel_fr==Conf\xe9rence Internationale des Statisticiens du Travail','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_3_1=g_navNode_8_3.addNode('369','Meeting of experts of labour statistics',ssUrlPrefix + 'statistics-and-databases/meetings-and-events/meeting-of-experts/index.htm','SectionLabel_en==Meeting of experts of labour statistics','SectionLabel_es==Reuni\xf3n de Expertos en Estad\xedsticas del Trabajo','SectionLabel_fr==R\xe9union d\u2019Experts sur les Statistiques du Travail','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');
g_navNode_8_4=g_navNode_8.addNode('259','Research and databases',ssUrlPrefix + 'statistics-and-databases/research-and-databases/index.htm','SectionLabel_en==Resources for researchers','SectionLabel_es==Recursos \xfatiles para investigadores ','SectionLabel_fr==Ressources utiles pour les chercheurs','maxAge==86400','secondaryUrlVariableField==pl_replaceable_content');

