//<script>
/* MENUS

************* Menu Visual  *****************
	 Estructura del menu:
	 Array(<Opcion principal> , <SubMenu1 | SubMenu2 |...etc>)
	
	 Ejemplo:  opciones[0] = new Array("Mi Opcion", "SubOpc1  | SubOpc2 | SubOpc3");
		Genera:
	      Mi Opcion
				- SubOpc1
				- SubOpc2 


*****************  Menu fisico (ruta + paginas)  ***************************************
de
	 [ruta/]<nombrepagina> | [ruta/]<nombrepagina>|......
 
	 Se indican los nombres de pagina con su extension y si se requiere, la ruta
	 el numero de paginas es el total de subopciones mas la opcion principal 
	
	 Ejemplo:  Opcion Principal
					- SubMenu1
					- SubMenu2
	 con esta estructura se indicarian 3 paginas, opcion principal + 2 submenus.
	 "principal.html | ruta/pagina1.html | ruta/pagina2.html|"
	 
	 //GetCookie('lnc', document.cookie);

*/

function opcionesAboutNeoris()
{
	var opciones = new Array();
	var idLenguaje = GetCookie('lnc', document.cookie);
	
	switch(idLenguaje)
	{ 
		case '0':	 // Ingles
			opciones[0] = new Array("Overview", "Overview | History | Competitive Advantage");	 // | Global Report
			opciones[1] = new Array("Mission / Vision / Values", "");
			opciones[2] = new Array("Social Responsibility", "Overview | Corporate Ethics | Quality | Environment | Community Involvement");
			opciones[3] = new Array("Alliances", "");
			opciones[4] = new Array("Leadership", "Claudio Muruz&aacute;bal¬ C E O | Carlos Castilla¬ VP, Mexico Country Unit/CEMEX Operations | Carlos Manuel P&eacute;rez¬ Regional Managing Director | Doug Gattuso¬ VP, Managing Director, U.S. | Juan Carlos L&oacute;pez¬ Business Transformation Managing Director | Marcos de Pedro¬ Regional Managing Director, Spain | Mart&iacute;n Mendez¬ Regional Managing Director, Argentina and Chile | Rolando Garay¬ Regional Managing Director, Neoris M&eacute;xico | Guillermo Rubio¬ Chief Financial Officer | Frederico Vilar¬ Country Manager");
			opciones[5] = new Array("Awards and Recognitions", "Introduction | Awards | Analyst Quotes");
			opciones[6] = new Array("Clients", "By Industry | By Subject");
			opciones[7] = new Array("Locations", "");
			break;
		case '1':	// Español
			opciones[0] = new Array("Acerca de Neoris", "Qui&eacute;nes Somos | Nuestra historia | Ventaja Competitiva");	// | Global Report
			opciones[1] = new Array("Misi&oacute;n / Visi&oacute;n / Valores", "");
			opciones[2] = new Array("Responsabilidad Social", "Introducci&oacute;n | &Eacute;tica Empresarial | Calidad | Medio Ambiente | Acci&oacute;n Social");
			opciones[3] = new Array("Alianzas", "");
			opciones[4] = new Array("Equipo Directivo", "Claudio Muruz&aacute;bal¬ C E O | Carlos Castilla¬ VP, Mexico Country Unit/CEMEX Operations | Carlos Manuel P&eacute;rez¬ Regional Managing Director | Doug Gattuso¬ VP, Managing Director, U.S. | Juan Carlos L&oacute;pez¬ Business Transformation Managing Director | Marcos de Pedro¬ Regional Managing Director, Spain | Mart&iacute;n Mendez¬ Regional Managing Director, Argentina and Chile | Rolando Garay¬ Regional Managing Director, Neoris M&eacute;xico | Guillermo Rubio¬ Chief Financial Officer | Frederico Vilar¬ Country Manager");
			opciones[5] = new Array("Reconocimientos", "Introducci&oacute;n | Premios | Palabras de los analistas");
			opciones[6] = new Array("Clientes", "Por Industria | Por &#193;rea");	
			opciones[7] = new Array("Oficinas", "");
			break;
		case '2':	// Portugues
			opciones[0] = new Array("Sobre a Neoris", "Quem Somos | Nossa hist&oacute;ria | Vantagem Competitiva");	 // | Global Report
			opciones[1] = new Array("Miss&atilde;o / Vis&atilde;o / Valores", "");
			opciones[2] = new Array("Responsabilidade Social", "Introdução | &Eacute;tica Empresarial | Qualidade | Meio-Ambiente | Ação Social");
			opciones[3] = new Array("Alian&#231;as", "");
			opciones[4] = new Array("Diretoria", "Claudio Muruz&aacute;bal¬ C E O | Carlos Castilla¬ VP, Mexico Country Unit/CEMEX Operations | Carlos Manuel P&eacute;rez¬ Regional Managing Director | Doug Gattuso¬ VP, Managing Director, U.S. | Juan Carlos L&oacute;pez¬ Business Transformation Managing Director | Marcos de Pedro¬ Regional Managing Director, Spain | Mart&iacute;n Mendez¬ Regional Managing Director, Argentina and Chile | Rolando Garay¬ Regional Managing Director, Neoris M&eacute;xico | Guillermo Rubio¬ Chief Financial Officer | Frederico Vilar¬ Country Manager");
			opciones[5] = new Array("Reconhecimento", "Introdu&ccedil;&atilde;o | Pr&ecirc;mios | Palavras dos analistas");
			opciones[6] = new Array("Clientes", "Por Ind&#250;stria | Por &#193;rea");	
			opciones[7] = new Array("Escrit&oacute;rios", "");
			break;
		default: // Ingles
			opciones[0] = new Array("Company Overview", "Overview | History | Competitive Advantage");	 // | Global Report
			opciones[1] = new Array("Mission / Vision / Values", "");
			opciones[2] = new Array("Social Responsibility", "Overview | Corporate Ethics | Quality | Environment | Community Involvement");
			opciones[3] = new Array("Alliances", "");
			opciones[4] = new Array("Leadership", "Claudio Muruz&aacute;bal; C E O | Carlos Castilla; VP, Mexico Country Unit/CEMEX Operations | Carlos Manuel P&eacute;rez | Doug Gattuso¬ VP, Managing Director, U.S. | Juan Carlos L&oacute;pez | Marcos de Pedro; Regional Managing Director, Spain | Mart&iacute;n Mendez; Regional Managing Director, Argentina and Chile | Rolando Garay | Guillermo Rubio; Chief Financial Officer | Frederico Vilar¬ Country Manager");
			opciones[5] = new Array("Awards and Recognitions", "Introduction | Awards | Analyst Quotes");
			opciones[6] = new Array("Clients", "By Industry | By Subject");
			opciones[7] = new Array("Locations", "");
			break;
	}
	
	return opciones;
}


function paginasAboutNeoris()
{
	var pagesPath = new Array();	
	
	pagesPath[0] = "aboutneoris/overview/overview.html | aboutneoris/overview/overview.html | aboutneoris/overview/history.html | aboutneoris/overview/difference.html"; //  | aboutneoris/overview/GlobalReport.html
	pagesPath[1] = "aboutneoris/missionandvision/missionandvision.html";
	pagesPath[2] = "aboutneoris/responsibility/overview.html |aboutneoris/responsibility/overview.html | aboutneoris/responsibility/Ethics.html | aboutneoris/responsibility/Quality.html | aboutneoris/responsibility/EnvironmentalPolicies.html | aboutneoris/responsibility/CommunityInvolvement.html";
	pagesPath[3] = "aboutneoris/alliances/alliances.html";
	pagesPath[4] = "aboutneoris/leadership/Muruzabal.html | aboutneoris/leadership/Muruzabal.html | aboutneoris/leadership/Castilla.html | aboutneoris/leadership/Perez.html | aboutneoris/leadership/Gattuso.html | aboutneoris/leadership/Lopez.html | aboutneoris/leadership/De_Pedro.html | aboutneoris/leadership/Mendez.html | aboutneoris/leadership/Garay.html | aboutneoris/leadership/Rubio.html | aboutneoris/leadership/Vilar.html";
	pagesPath[5] = "aboutneoris/recognition/recognition.html | aboutneoris/recognition/recognition.html | aboutneoris/recognition/awards.html | aboutneoris/recognition/quotes.html";
	pagesPath[6] = "clients/clients.aspx?tipo=1&sec=0&menu=1&option=7&seccion=1&suboption=2 | clients/clients.aspx?tipo=1&sec=0&menu=1&option=7&seccion=1&suboption=2 | clients/clients.aspx?tipo=2&sec=0&menu=1&option=7&seccion=2&suboption=2";
	pagesPath[7] = "aboutneoris/locations/locations.html";
	
	return pagesPath;
}


function opcionesServices()
{
	var opciones = new Array();
	var idLenguaje = GetCookie('lnc', document.cookie); 
	
	switch(idLenguaje)
	{
		case '0':	 // Ingles
			opciones[0] = new Array("By Industry", "Manufacturing | Financial Services | Public Sector | Healthcare | Natural Resources | Retail / Consumer Product Goods | Telecommunications / Technology | Transportation");
			opciones[1] = new Array("By Subject", "Business Consulting | Outsourcing | Technology ");
			break;
		case '1':	// Español
			opciones[0] = new Array("Por Industria", "Manufactura | Servicios Financieros | Sector P&#250;blico | Salud Industria Farmac&#233;utica | Recursos Naturales | Retail / Producto de Consumo | Telecomunicaciones / Tecnolog&#237;a | Transporte");
			opciones[1] = new Array("Por &#193;rea", "Consultor&#237;a de Negocios | Outsourcing | Tecnolog&#237;a");
			break;
		case '2':	// Portugues
			opciones[0] = new Array("Por Ind&uacute;stria", "Manufatura | Servi&#231;os Financeiros | Setor P&#250;blico | Sa&#250;de / Ind&#250;stria Farmac&#234;utica | Recursos Naturais | Varejo / Produto de Consumo | Telecomunica&#231;ões / Tecnologia | Transportes");
			opciones[1] = new Array("Por &#193;rea", "Consultoria de Neg&#243;cios | Outsourcing | Tecnologia");
			break;
		default:
			opciones[0] = new Array("By Industry", "Manufacturing | Financial Services | Public Sector | Healthcare | Natural Resources | Retail / Consumer Product Goods | Telecommunications / Technology | Transportation");
			opciones[1] = new Array("By Subject", "Business Consulting | Outsourcing | Technology ");
			break;
	}
	
	return opciones;
}

function paginasServices()
{
	var pagesPath = new Array();	
	
	pagesPath[0] = "services/byindustry/consumer/overview.html | services/byindustry/consumer/overview.html | services/byindustry/financial/overview.html | services/byindustry/government/overview.html | services/byindustry/healthcare/overview.html | services/byindustry/naturalresource/overview.html | services/byindustry/retail/overview.html | services/byindustry/telecom/overview.html | services/byindustry/transportation/overview.html";
	pagesPath[1] = "services/bysubject/businessconsulting/enterprise.htm | services/bysubject/businessconsulting/enterprise.htm | services/bysubject/outsourcing/application.htm | services/bysubject/technology/architecture.htm";
	
	return pagesPath;
}

function opcionesExpertise()
{
	var opciones = new Array();
	var idLenguaje = GetCookie('lnc', document.cookie); 
	
	switch(idLenguaje)
	{
		case '0':	 // Ingles
			opciones[0] = new Array("SAP", "Introduction | Excellence Center | Service Model | Mainstream Solutions | LME Solutions | IFRS ");
			opciones[1] = new Array("S&sup2;OA", "Introduction | The TCO of SOA | Neoris S&sup2;OA");
			opciones[2] = new Array("Nearshore Outsourcing", "Introduction | Advantages | Facilities | Services Portfolio | Nearshore Model | Analyst Quotes");
			opciones[3] = new Array("Company Way", "Introduction | Process Management | Benefits");
			//opciones[4] = new Array("ActiveSuite", "Introduction | Solution View | Key Features | Devices | Benefits | Metrics");
			opciones[4] = new Array("ActiveSuite", "Overview |  ActiveSuite Logistics | ActiveSuite XSales (DSD)");
			break;
		case '1':	// Español
			opciones[0] = new Array("SAP", "Introducci&oacute;n | Excellence Center | Modelo de Servicio | Mainstream Solutions | LME Solutions | NIIF ");	
			opciones[1] = new Array("S&sup2;OA", "Introducci&oacute;n | TCO de la SOA | Neoris S&sup2;OA");
			opciones[2] = new Array("Nearshore Outsourcing", "Introducci&oacute;n | Ventajas | Instalaciones | Portafolio de Servicios | Modelo Nearshore | Palabras de los analistas");
			opciones[3] = new Array("Company Way", "Introducci&oacute;n | Gesti&oacute;n de Procesos | Beneficios");
			//opciones[4] = new Array("ActiveSuite", "Introducci&oacute;n | Soluci&oacute;n | Funcionalidades | Dispositivos | Beneficios | M&eacute;tricas ");
			opciones[4] = new Array("ActiveSuite", "Introducci&oacute;n | ActiveSuite Logistics | ActiveSuite XSales (DSD)");
			break;
		case '2':	// Portugues
			opciones[0] = new Array("SAP", "Introdu&ccedil;&atilde;o | Excellence Center | Modelo de Servi&ccedil;o | Mainstream Solutions | LME Solutions | NIIF ");	
			//opciones[0] = new Array("SAP", "Introdu&ccedil;&atilde;o | Excellence Center | Modelo de Servi&ccedil;os | Solu&ccedil;&otilde;es");	
			opciones[1] = new Array("S&sup2;OA", "Introdu&ccedil;&atilde;o | O TCO de SOA | Neoris S&sup2;OA");
			opciones[2] = new Array("Nearshore Outsourcing", "Introdu&ccedil;&atilde;o | Vantagens | Instala&ccedil;&otilde;es | Portf&oacute;lio de Servi&ccedil;os | Modelo Nearshore | Palavras dos analistas");
			opciones[3] = new Array("Company Way", "Introdu&ccedil;&atilde;o | Gerenciamento de Processos | Benef&iacute;cios ");
			//opciones[4] = new Array("ActiveSuite", "Introdu&ccedil;&atilde;o | Solu&ccedil;&atilde;o | Funcionalidades | Equipamentos | Benef&iacute;cios | M&eacute;tricas ");
			opciones[4] = new Array("ActiveSuite", "Introdu&ccedil;&atilde;o | ActiveSuite Logistics | ActiveSuite XSales (DSD)");
			break;
		default: // Ingles
			opciones[0] = new Array("SAP", "Introduction | Excellence Center | Service Model | Mainstream Solutions | LME Solutions | IFRS ");	
			opciones[1] = new Array("S&sup2;OA", "Introduction | The TCO of SOA | Neoris S&sup2;OA");
			opciones[2] = new Array("Nearshore Outsourcing", "Introduction | Advantages | Facilities | Services Portfolio | Nearshore Model | Analyst Quotes");
			opciones[3] = new Array("Company Way", "Introduction | Process Management | Benefits");
			//opciones[4] = new Array("ActiveSuite", "Introduction | Solution View | Key Features | Devices | Benefits | Metrics");
			opciones[4] = new Array("ActiveSuite", "Overview |  ActiveSuite Logistics | ActiveSuite XSales (DSD)");
			break;
	}

	return opciones;
}

function paginasExpertise()
{
	var pagesPath = new Array();	
	
	pagesPath[0] = "expertise/sap/sap.html | expertise/sap/sap.html | expertise/sap/excellencecenter.html | expertise/sap/servicemodel.html | expertise/sap/solutions/ERP.html | expertise/sap/solutions/xmii.html | expertise/sap/ifrs/introduction.html ";
	pagesPath[1] = "expertise/s2oa/introduction.html | expertise/s2oa/introduction.html | expertise/s2oa/tcoofsoa.html | expertise/s2oa/neorissoa.html";
	pagesPath[2] = "expertise/nearshore/nearshore.html | expertise/nearshore/nearshore.html | expertise/nearshore/advantages.html | expertise/nearshore/facilities.html | expertise/nearshore/services.html | expertise/nearshore/model.html | expertise/nearshore/quotes.html";
	pagesPath[3] = "expertise/companyway/companyway.html | expertise/companyway/companyway.html |expertise/companyway/process.html | expertise/companyway/benefits.html| expertise/companyway/cases.html";
	pagesPath[4] = "expertise/activesuite/overview.html | expertise/activesuite/overview.html | expertise/activesuite/activesuite.html | expertise/activesuite/xsales.html | expertise/activesuite/devices.html | expertise/activesuite/benefits.html | expertise/activesuite/metrics.html | expertise/activesuite/cases.html";
	
	return pagesPath;
}

function opcionesInsights()
{
	var opciones = new Array();
	var idLenguaje = GetCookie('lnc', document.cookie); 
	
	switch(idLenguaje)
	{
		case '0':	 // Ingles
			opciones[0] = new Array("White Papers", "");
			opciones[1] = new Array("Case Studies", "By Industry | By Subject");
			opciones[2] = new Array("Analyst Reports", "2009 | 2008 | 2007 | 2006 | 2005 | 2004");
			opciones[3] = new Array("Collateral Material", "");
			break;
		case '1':	// Español
			opciones[0] = new Array("White Papers", "");
			opciones[1] = new Array("Casos de Estudio", "Por Industria | Por &#193;rea");
			opciones[2] = new Array("Reportes de Analistas", "2009 | 2008 | 2007 | 2006 | 2005 | 2004");
			opciones[3] = new Array("Material Corporativo", "");
			break;
		case '2':	// Portugues
			opciones[0] = new Array("White Papers", "");
			opciones[1] = new Array("Casos de Estudo", "Por Ind&#250;stria | Por &#193;rea");
			opciones[2] = new Array("Analistas", "2009 | 2008 | 2007 | 2006 | 2005 | 2004");
			opciones[3] = new Array("Material Corporativo", "");
			break;
		default:
			opciones[0] = new Array("White Papers", "");
			opciones[1] = new Array("Case Studies", "By Industry | By Subject");
			opciones[2] = new Array("Analyst Reports", "2009 | 2008 | 2007 | 2006 | 2005 | 2004");
			opciones[3] = new Array("Collateral Material", "");
			break;
	}

	return opciones;
}

function paginasInsights()
{
	var pagesPath = new Array();
	
	pagesPath[0] = "insights/whitepapers.aspx";
	pagesPath[1] = "casestudies/casestudies.aspx?type=1&menu=4&option=2&seccion=1&suboption=0&idType=0 | casestudies/casestudies.aspx?type=1&menu=4&option=2&seccion=1&suboption=0&idType=0 | casestudies/casestudies.aspx?type=2&menu=4&option=2&seccion=2&suboption=0&idType=0";
	pagesPath[2] = "insights/analyst/2009.aspx | insights/analyst/2009.aspx | insights/analyst/2008.aspx | insights/analyst/2007.html | insights/analyst/2006.html | insights/analyst/2005.html | insights/analyst/2004.html";
	pagesPath[3] = "insights/collateral.aspx";
	
	return pagesPath;
}

function opcionesMediaEvents()
{
	var opciones = new Array();
	var idLenguaje = GetCookie('lnc', document.cookie); 
	
	switch(idLenguaje)
	{
		case '0':	 // Ingles
			opciones[0] = new Array("News", "2010 | 2009 | 2008");
			opciones[1] = new Array("Media Coverage", "2009 | 2008 | 2007 | 2006 | 2005 | 2004");
			opciones[2] = new Array("Events", "North America | Latin America | Europe");
			opciones[3] = new Array("Press Releases", "2010 | 2009 | 2008 | 2007 | 2006 | 2005 | 2004");
			opciones[4] = new Array("Press Kit", "");
			break;
		case '1':	// Español
			opciones[0] = new Array("Noticias", "2010 | 2009 | 2008");
			opciones[1] = new Array("Medios", "2009 | 2008 | 2007 | 2006 | 2005 | 2004");
			opciones[2] = new Array("Eventos", "Am&eacute;rica del Norte | Am&eacute;rica Latina | Europa");
			opciones[3] = new Array("Press Releases", "2010 | 2009 | 2008 | 2007 | 2006 | 2005 | 2004");
			opciones[4] = new Array("Press Kit", "");
			break;
		case '2':	// Portugues
			opciones[0] = new Array("Noticias", "2010 | 2009 | 2008");
			opciones[1] = new Array("Imprensa", "2009 | 2008 | 2007 | 2006 | 2005 | 2004");
			opciones[2] = new Array("Eventos", "Am&eacute;rica do Norte | Am&eacute;rica Latina | Europa");
			opciones[3] = new Array("Press Releases", "2010 | 2009 | 2008 | 2007 | 2006 | 2005 | 2004");
			opciones[4] = new Array("Press Kit", "");
			break;
		default: // Ingles
			opciones[0] = new Array("News", "2010 | 2009 | 2008");
			opciones[1] = new Array("Media Coverage", "2009 | 2008 | 2007 | 2006 | 2005 | 2004");
			opciones[2] = new Array("Events", "North America | Latin America | Europe");
			opciones[3] = new Array("Press Releases", "2010 | 2009 | 2008 | 2007 | 2006 | 2005 | 2004");
			opciones[4] = new Array("Press Kit", "");
			break;
	}

	return opciones;
}

function paginasMediaEvents()
{
	var pagesPath = new Array();	
	
	pagesPath[0] = "mediaevents/news/2010.aspx | mediaevents/news/2010.aspx | mediaevents/news/2009.aspx | mediaevents/news/2008.aspx";
	pagesPath[1] = "mediaevents/media/2009.aspx | mediaevents/media/2009.aspx | mediaevents/media/2008.aspx | mediaevents/media/2007.aspx | mediaevents/media/2006.aspx | mediaevents/media/2005.aspx | mediaevents/media/2004.aspx";
	pagesPath[2] = "mediaevents/events/northamerica.aspx?region=1 | mediaevents/events/northamerica.aspx?region=1 | mediaevents/events/latinamerica.aspx?region=2 | mediaevents/events/europe.aspx?region=3";
	pagesPath[3] = "mediaevents/press/2010.aspx | mediaevents/press/2010.aspx | mediaevents/press/2009.aspx | mediaevents/press/2008.aspx | mediaevents/press/2007.aspx | mediaevents/press/2006.aspx | mediaevents/press/2005.aspx | mediaevents/press/2004.aspx";
	pagesPath[4] = "mediaevents/presskit.aspx";
	
	return pagesPath;
}

function opcionesCareers()
{
	var opciones = new Array();
	var idLenguaje = GetCookie('lnc', document.cookie); 
	
	switch(idLenguaje)
	{
		case '0':	 // Ingles
			opciones[0] = new Array("Working at Neoris", "Diversity | Mission / Vision / Values | Career Tracks | Neoris Professional Profile | Benefits | Interviews with Employees");
			opciones[1] = new Array("Send Your Resume", "");
			opciones[2] = new Array("Contractors", "");
			break;
		case '1':	// Español
			opciones[0] = new Array("Trabajar en Neoris", "Diversidad | Misi&oacute;n / Visi&oacute;n / Valores | Crecimiento Profesional | Perfil de los profesionales de Neoris | Beneficios | Opini&oacute;n de nuestros empleados");
			opciones[1] = new Array("Envie su CV", "");
			opciones[2] = new Array("Proveedores", "");
			break;
		case '2':	// Portugues
			opciones[0] = new Array("Trabalho na Neoris", "Diversidade | Vis&atilde;o / Miss&atilde;o / Valores | Crescimento profissional | Perfil dos profissionais da Neoris | Vantagens | Depoimentos de funcion&aacute;rios");
			opciones[1] = new Array("Envie seu CV", "");
			opciones[2] = new Array("Fornecedores", "");
			break;
		default:
			opciones[0] = new Array("Working at Neoris", "Diversity | Mission / Vision / Values | Career Tracks | Neoris Professional Profile | Benefits | Interviews with Employees");
			opciones[1] = new Array("Send Your Resume", "");
			opciones[2] = new Array("Contractors", "");
			break;
	}

	return opciones;
}
 
function paginasCareers()
{
	var pagesPath = new Array();	
	
	pagesPath[0] = "careers/WorkingNeoris.html | careers/Diversity.html | careers/missionandvision.html | careers/CareerTracks.html | careers/Professionals_Profile.html | careers/Benefits.html | careers/Recomendations.html";	
	pagesPath[1] = "careers/careers.html";
	pagesPath[2] = "../Contractor/Forms/Login.aspx";
	
	return pagesPath;
}


function opcionesCountries()
{
	var opciones = new Array();
	var idLenguaje = GetCookie('lnc', document.cookie); 
	
	switch(idLenguaje)
	{
		case '0':	 // Ingles
			opciones[0] = new Array("Argentina", "");
			opciones[1] = new Array("Brazil", "");
			opciones[2] = new Array("Chile", "");
			opciones[3] = new Array("Colombia", "");
			opciones[4] = new Array("Hungary", "");
			opciones[5] = new Array("Mexico", "");
			opciones[6] = new Array("Spain", "");
			opciones[7] = new Array("USA", "");
			break;
		case '1':	// Español
			opciones[0] = new Array("Argentina", "");
			opciones[1] = new Array("Brasil", "");
			opciones[2] = new Array("Chile", "");
			opciones[3] = new Array("Colombia", "");
			opciones[4] = new Array("Hungr&iacute;a", "");
			opciones[5] = new Array("M&eacute;xico", "");
			opciones[6] = new Array("Espa&ntildea", "");
			opciones[7] = new Array("USA", "");
			break;
		case '2':	// Portugues
			opciones[0] = new Array("Argentina", "");
			opciones[1] = new Array("Brazil", "");
			opciones[2] = new Array("Chile", "");
			opciones[3] = new Array("Colombia", "");
			opciones[4] = new Array("Hungary", "");
			opciones[5] = new Array("Mexico", "");
			opciones[6] = new Array("Spain", "");
			opciones[7] = new Array("USA", "");
			break;
		default:
			opciones[0] = new Array("Argentina", "");
			opciones[1] = new Array("Brazil", "");
			opciones[2] = new Array("Chile", "");
			opciones[3] = new Array("Colombia", "");
			opciones[4] = new Array("Hungary", "");
			opciones[5] = new Array("Mexico", "");
			opciones[6] = new Array("Spain", "");
			opciones[7] = new Array("USA", "");
			break;
	}

	return opciones;
}

function paginasCountries()
{
	var pagesPath = new Array();	
	
	pagesPath[0] = "countries/argentina.html";
	pagesPath[1] = "countries/brazil.html";
	pagesPath[2] = "countries/chile.html";
	pagesPath[3] = "countries/colombia.html";
	pagesPath[4] = "countries/hungary.html";
	pagesPath[5] = "countries/mexico.html";
	pagesPath[6] = "countries/spain.html";
	pagesPath[7] = "countries/usa.html";
	
	return pagesPath;
}

function opcionesContactUs()
{
	var opciones = new Array();
	var idLenguaje = GetCookie('lnc', document.cookie); 
	
	switch(idLenguaje)
	{
		case '0':	 // Ingles
			opciones[0] = new Array("Locations", "");
			opciones[1] = new Array("Contact Form","");
			opciones[2] = new Array("Request Information","");
			opciones[3] = new Array("Analyst Relations","");
			/*
			opciones[1] = new Array("Request Information","");
			opciones[2] = new Array("Careers","");
			*/
			opciones[4] = new Array("Send Site Feedback","");
			
			break;
		case '1':	// Español
			opciones[0] = new Array("Oficinas", "");
			opciones[1] = new Array("Cont&#225;ctenos","");
			opciones[2] = new Array("Solicitud de Informaci&#243;n","");
			opciones[3] = new Array("Relaciones con los Analistas","");
			opciones[4] = new Array("Env&iacute;enos sus comentarios acerca de nuestro sitio","");
			break;
		case '2':	// Portugues
			opciones[0] = new Array("Escrit&#243;rios", "");
			opciones[1] = new Array("Formul&#225;rio de contato","");
			opciones[2] = new Array("Solicita&#231;&atilde;o de Informa&#231;&otilde;es","");
			opciones[3] = new Array("Relacionamento com Analistas","");
			opciones[4] = new Array("Envie coment&aacute;rios sobre o website","");
			break;
		default:
			opciones[0] = new Array("Locations", "");
			opciones[1] = new Array("Contact Form","");
			opciones[2] = new Array("Request Information","");
			opciones[3] = new Array("Analyst Relations","");
			opciones[4] = new Array("Send Site Feedback","");
			break;
	}
	return opciones;
}

function paginasContactUs()
{
	var pagesPath = new Array();
	
	pagesPath[0] = "contactus/contactus.html";
	pagesPath[1] = "contactus/contactform.aspx";
	pagesPath[2] = "contactus/RequestInformation.aspx";
	pagesPath[3] = "contactus/AnalystRelations.html";
	
	//pagesPath[2] = "careers/careers.html";
	pagesPath[4] = "contactus/feedback.aspx";
	
	return pagesPath;
}

function opcionesGuideLines()
{
	var opciones = new Array();

	opciones[0] = new Array("Brand Attributes", "The importance of identity | What is our identity? | Brand Arquitecture | Brand Positioning");
	opciones[1] = new Array("Brand Elements", "Neoris Logo | Color Palette | Neoris Signature | Typography | Imagery");
	opciones[2] = new Array("Guidelines", "Stationery | Collateral Material | Internal Communications | E-mail Signature | Presentations | Advertising");
	opciones[3] = new Array("Downloads", "Logos | Templates | Stationery");
	
	return opciones;
}

function paginasGuideLines()
{
	var pagesPath = new Array();
	
	pagesPath[0] = "brandguidelines/brandattributes/ImportanceIdentity.html | brandguidelines/brandattributes/ImportanceIdentity.html | brandguidelines/brandattributes/WhatIsOurIdentity.html | brandguidelines/brandattributes/BrandArchitecture.html | brandguidelines/brandattributes/BrandPositioning.html";
	pagesPath[1] = "brandguidelines/brandelements/NeorisLogo.html | brandguidelines/brandelements/NeorisLogo.html | brandguidelines/brandelements/colorpalette.html | brandguidelines/brandelements/neorissignature.html | brandguidelines/brandelements/typography.html | brandguidelines/brandelements/imagery.html";
	pagesPath[2] = "brandguidelines/guidelines/stationery.html | brandguidelines/guidelines/stationery.html | brandguidelines/guidelines/collateralmaterial.html | brandguidelines/guidelines/internalcommunications.html | brandguidelines/guidelines/emailsignature.html | brandguidelines/guidelines/presentations.html | brandguidelines/guidelines/advertising.html";
	pagesPath[3] = "brandguidelines/download/logos.html | brandguidelines/download/logos.html | brandguidelines/download/templates.html | brandguidelines/guidelines/stationery.html";
	
	return pagesPath;
}

//*********************************************************************************
//*********************************************************************************


// Si existieran otros menus con un tercer nivel, se agregan opciones y sus paginas en un array
// y en se obtienen de acuerdo al par generado por la opcion padre+hijo, en el caso unico que existe para este proyecto
// del menu principal 3 ("Expertise"), la opcion 1 ("SAP"), seccion 4 ("Solutions") ('314') es la que tiene opciones extra, 
// y se toman del array formado, en la posicion previamente conocida por el programador.

//EJEMPLO: 

// 161: About Neoris (1), Clients (6), By Industry (1)
// 162: About Neoris (1), Clients (6), By Subject (2)


// menu =  menuPrincipal + Opcion Selecionada + Seccion

function extraOpciones(leng, menu, padre, hijo)
{
	var menu = String(menu)+ String(padre) + String(hijo);
	var opciones, paginas;	
	var extrasOpc = new Array();
	var extrasPag = new Array();
	
	switch(leng)
	{
		case '0':
			// ****************** NO FUNCIONAL ******************
				extrasOpc[0] = 'Consumer and Industrial Markets | Financial Services | Government | Healthcare | Natural Resources | Retail / Consumer Products Goods | Telecommunications and Technology | Transportation';
				extrasOpc[1] = 'Emerging Technologies | Outsourcing | Value Added Consulting';

			// Services : By Industry
				extrasOpc[2] = 'Overview | Clients | Case Studies';
				extrasOpc[3] = 'Overview | Clients | Case Studies';
				extrasOpc[4] = 'Overview | Clients | Case Studies';
				extrasOpc[5] = 'Overview | Clients | Case Studies';
				extrasOpc[6] = 'Overview | Clients | Case Studies';
				extrasOpc[7] = 'Overview | Clients | Case Studies';
				extrasOpc[8] = 'Overview | Clients | Case Studies';
				extrasOpc[9] = 'Overview | Clients | Case Studies';

			// Services : By Subject
				extrasOpc[10] = 'Enterprise Value Services | Post-Merger Integration | Process Consulting';
				extrasOpc[11] = 'Application Management Services | BPO | Contact Centers | Infrastructure Management Services | Software as a Service (SAAS) | Software Development | Testing Services';
				extrasOpc[12] = 'Enterprise Architecture | Information Management Services | Learning Solutions Services | Oracle | SAP | Software Engineering Services';
				

			// Expertise: SAP - Solutions
				//Se ocultaron los menus del resto de las Soluciones.
				//extrasOpc[13] = 'xMII | TMS | WMS | ICH | DSD | MDM | EP | BI | XI | Flow';
				extrasOpc[13] = 'ERP 6.0 | CRM | SRM | NETWEAVER | SCM (APO)';
				extrasOpc[14] = 'SAP MII | SAP EWM | SAP TM | SAP DSD | SAP SNC';
				extrasOpc[19] = 'Overview | Adoption Methodology | Impact on Information Systems | Impact on SAP';

			// **************  NO FUNCIONAL  ******************
				extrasOpc[15] = 'Consumer and Industrial Markets | Financial Services | Government | Healthcare | Natural Resources | Retail / Consumer Products Goods | Telecommunications / Technology | Transportation';
				extrasOpc[16] = 'Emerging Technologies | Outsourcing | Value Added Consulting';
				extrasOpc[17] = 'Introduction | Solution View | Key Features | Devices | Benefits | Metrics';
				extrasOpc[18] = 'Solution View | Key Features | Benefits';
			break;

		case '1':
			// About Neoris : Clients
				extrasOpc[0] = 'Consumer and Industrial Markets | Financial Services | Government | Healthcare | Natural Resources | Retail / Consumer Products Goods | Telecommunications and Technology | Transportation';
				extrasOpc[1] = 'Emerging Technologies | Outsourcing | Value Added Consulting';

			// Services : By Industry
				extrasOpc[2] = 'Introducci&#243;n | Clientes | Casos de Estudio';
				extrasOpc[3] = 'Introducci&#243;n | Clientes | Casos de Estudio';
				extrasOpc[4] = 'Introducci&#243;n | Clientes | Casos de Estudio';
				extrasOpc[5] = 'Introducci&#243;n | Clientes | Casos de Estudio';
				extrasOpc[6] = 'Introducci&#243;n | Clientes | Casos de Estudio';
				extrasOpc[7] = 'Introducci&#243;n | Clientes | Casos de Estudio';
				extrasOpc[8] = 'Introducci&#243;n | Clientes | Casos de Estudio';
				extrasOpc[9] = 'Introducci&#243;n | Clientes | Casos de Estudio';

			// Services : By Subject
				extrasOpc[10] = 'Consultor&#237;a Empresarial de Valor Agregado | Integraci&#243;n Post-Merger | Consultor&#237;a de Procesos';
				extrasOpc[11] = 'Manejo de Aplicaciones | Outsourcing de Procesos de Negocio (BPO) | Centros de Contacto | Manejo de Infraestructura | Software como Servicio (SAAS) | Desarrollo de Software | Pruebas a Sistemas';
				extrasOpc[12] = 'Arquitectura Empresarial | Manejo de la Informaci&#243;n | Soluciones de Aprendizaje | Oracle | SAP | Ingenier&#237;a de Software';

			// Expertise: SAP - Solutions
				//Se ocultaron los menus del resto de las Soluciones.
				//extrasOpc[13] = 'xMII | TMS | WMS | ICH | DSD | MDM | EP | BI | XI | Flow';
				extrasOpc[13] = 'ERP 6.0 | CRM | SRM | NETWEAVER | SCM (APO)';
				extrasOpc[14] = 'SAP MII | SAP EWM | SAP TM | SAP DSD | SAP SNC';
				extrasOpc[19] = 'Introducci&#243;n | Metodolog&#237;a de adopci&#243;n | Impacto en los sistemas de informaci&#243;n | Impacto en SAP';

			// **************  NO FUNCIONAL  ******************
				extrasOpc[15] = 'Consumer and Industrial Markets | Financial Services | Government | Healthcare | Natural Resources | Retail / Consumer Products Goods | Telecommunications / Technology | Transportation';
				extrasOpc[16] = 'Emerging Technologies | Outsourcing | Value Added Consulting';
				extrasOpc[17] = 'Introduction | Solution View | Key Features | Devices | Benefits | Metrics';
				extrasOpc[18] = 'Solution View | Key Features | Benefits';
			break;

		case '2':
			// About Neoris : Clients
				extrasOpc[0] = 'Consumer and Industrial Markets | Financial Services | Government | Healthcare | Natural Resources | Retail / Consumer Products Goods | Telecommunications and Technology | Transportation';
				extrasOpc[1] = 'Emerging Technologies | Outsourcing | Value Added Consulting';

			// Services : By Industry
				extrasOpc[2] = 'Introdu&#231;&#227;o | Clientes | Casos de Estudo';
				extrasOpc[3] = 'Introdu&#231;&#227;o | Clientes | Casos de Estudo';
				extrasOpc[4] = 'Introdu&#231;&#227;o | Clientes | Casos de Estudo';
				extrasOpc[5] = 'Introdu&#231;&#227;o | Clientes | Casos de Estudo';
				extrasOpc[6] = 'Introdu&#231;&#227;o | Clientes | Casos de Estudo';
				extrasOpc[7] = 'Introdu&#231;&#227;o | Clientes | Casos de Estudo';
				extrasOpc[8] = 'Introdu&#231;&#227;o | Clientes | Casos de Estudo';
				extrasOpc[9] = 'Introdu&#231;&#227;o | Clientes | Casos de Estudo';

			// Services : By Subject
				extrasOpc[10] = 'Consultoria Empresarial de Valor Agregado | Integra&#231;&#227;o Post-Merger | Consultoria de Processos';
				extrasOpc[11] = 'Gerenciamento de Aplica&#231;&#245;es | Outsourcing de Processos de Neg&#243;cio (BPO) | Centros de Contato | Gerenciamento de Infraestrutura | Software como Servi&#231;o (SAAS) | Desenvolvimento de Software | Testes de Sistemas ';
				extrasOpc[12] = 'Arquitetura Empresarial | Gerenciamento da Informa&#231;&#227;o | Solu&#231;&#245;es de Educa&#231;&#227;o | Oracle | SAP | Engenharia de Software';

			// Expertise: SAP - Solutions
				//Se ocultaron los menus del resto de las Soluciones.
				//extrasOpc[13] = 'xMII | TMS | WMS | ICH | DSD | MDM | EP | BI | XI | Flow';
				extrasOpc[13] = 'ERP 6.0 | CRM | SRM | NETWEAVER | SCM (APO)';
				extrasOpc[14] = 'SAP MII | SAP EWM | SAP TM | SAP DSD | SAP SNC';
				extrasOpc[19] = 'Introdu&#231;&#227;o | Metodologia para ado&#231;&#227;o  | Impacto nos sistemas de informa&#231;&#227;o | Impacto no SAP';

			// **************  NO FUNCIONAL  ******************
				extrasOpc[15] = 'Consumer and Industrial Markets | Financial Services | Government | Healthcare | Natural Resources | Retail / Consumer Products Goods | Telecommunications / Technology | Transportation';
				extrasOpc[16] = 'Emerging Technologies | Outsourcing | Value Added Consulting';
				extrasOpc[17] = 'Introduction | Solution View | Key Features | Devices | Benefits | Metrics';
				extrasOpc[18] = 'Solution View | Key Features | Benefits';
			break;
	}
	

	// Paginas correspondientes de las opciones.

// *********** No funcional *******
	extrasPag[0] = ' # | # | # | # | # | # | # | #';
	extrasPag[1] = ' # | # | #';

// Services : By Industry
	extrasPag[2] = 'services/byindustry/consumer/overview.html | clients/clients.aspx?tipo=1&sec=5&menu=2&option=1&seccion=1&suboption=2 | casestudies/casestudies.aspx?type=1&menu=2&option=1&seccion=1&suboption=3&idType=5';
	extrasPag[3] = 'services/byindustry/financial/overview.html | clients/clients.aspx?tipo=1&sec=7&menu=2&option=1&seccion=2&suboption=2 | casestudies/casestudies.aspx?type=1&menu=2&option=1&seccion=2&suboption=3&idType=7';
	extrasPag[4] = 'services/byindustry/government/overview.html | clients/clients.aspx?tipo=1&sec=8&menu=2&option=1&seccion=3&suboption=2 | casestudies/casestudies.aspx?type=1&menu=2&option=1&seccion=3&suboption=3&idType=8';
	extrasPag[5] = 'services/byindustry/healthcare/overview.html | clients/clients.aspx?tipo=1&sec=10&menu=2&option=1&seccion=4&suboption=2 | casestudies/casestudies.aspx?type=1&menu=2&option=1&seccion=4&suboption=3&idType=10';
	extrasPag[6] = 'services/byindustry/naturalresource/overview.html | clients/clients.aspx?tipo=1&sec=6&menu=2&option=1&seccion=5&suboption=2 | casestudies/casestudies.aspx?type=1&menu=2&option=1&seccion=5&suboption=3&idType=6';
	extrasPag[7] = 'services/byindustry/retail/overview.html | clients/clients.aspx?tipo=1&sec=11&menu=2&option=1&seccion=6&suboption=2 | casestudies/casestudies.aspx?type=1&menu=2&option=1&seccion=6&suboption=3&idType=11';	
	extrasPag[8] = 'services/byindustry/telecom/overview.html | clients/clients.aspx?tipo=1&sec=4&menu=2&option=1&seccion=7&suboption=2 | casestudies/casestudies.aspx?type=1&menu=2&option=1&seccion=7&suboption=3&idType=4';
	extrasPag[9] = 'services/byindustry/transportation/overview.html | clients/clients.aspx?tipo=1&sec=9&menu=2&option=1&seccion=8&suboption=2 | casestudies/casestudies.aspx?type=1&menu=2&option=1&seccion=8&suboption=3&idType=9';

// Services : By Subject
	extrasPag[10] = 'services/bysubject/businessconsulting/enterprise.htm | services/bysubject/businessconsulting/post-merger.htm | services/bysubject/businessconsulting/process.htm';
	extrasPag[11] = 'services/bysubject/outsourcing/application.htm | services/bysubject/outsourcing/BPO.htm | services/bysubject/outsourcing/contactcenters.htm | services/bysubject/outsourcing/infrastructure.htm | services/bysubject/outsourcing/SAAS.htm | services/bysubject/outsourcing/development.htm | services/bysubject/outsourcing/testing.htm ';
	extrasPag[12] = 'services/bysubject/technology/architecture.htm | services/bysubject/technology/information.htm | services/bysubject/technology/learning.htm | services/bysubject/technology/oracle.htm | services/bysubject/technology/SAP.htm | services/bysubject/technology/engineering.htm';

// Expertise: SAP - Solutions
	extrasPag[13] = 'expertise/sap/solutions/ERP.html | expertise/sap/solutions/CRM.html | expertise/sap/solutions/SRM.html | expertise/sap/solutions/NETWEAVER.html | expertise/sap/solutions/SMC_APO.html';
	extrasPag[14] = 'expertise/sap/solutions/xmii.html | expertise/sap/solutions/EWM.html | expertise/sap/solutions/TM.html | expertise/sap/solutions/DSD.html | expertise/sap/solutions/SNC.html';
	extrasPag[19] = 'expertise/sap/ifrs/introduction.html | expertise/sap/ifrs/methodology.html | expertise/sap/ifrs/impact.html | expertise/sap/ifrs/impactsap.html';

// Active Suite
	extrasPag[17] = 'expertise/activesuite/activesuite.html | expertise/activesuite/solution.html | expertise/activesuite/features.html | expertise/activesuite/devices.html | expertise/activesuite/benefits.html | expertise/activesuite/metrics.html';
	extrasPag[18] = 'expertise/activesuite/xsales.html | expertise/activesuite/xsales_features.html | expertise/activesuite/xsales_benefits.html';



// **** No funcional *******
	extrasPag[15] = '# | # | # | # | # | # | # | #';
	extrasPag[16] = '# | # | #';	
	
	switch(menu)
	{
		case 'XXX':
			opciones = extrasOpc[0];
			paginas = extrasPag[0];
			break;
		case 'YYY':
			opciones = extrasOpc[1];
			paginas = extrasPag[1];
			break;
		case '211':
			opciones = extrasOpc[2];
			paginas = extrasPag[2];
			break;
		case '212':
			opciones = extrasOpc[3];
			paginas = extrasPag[3];
			break;
		case '213':
			opciones = extrasOpc[4];
			paginas = extrasPag[4];
			break;
		case '214':
			opciones = extrasOpc[5];
			paginas = extrasPag[5];
			break;
		case '215':
			opciones = extrasOpc[6];
			paginas = extrasPag[6];
			break;
		case '216':
			opciones = extrasOpc[7];
			paginas = extrasPag[7];
			break;
		case '217':
			opciones = extrasOpc[8];
			paginas = extrasPag[8];
			break;
		case '218':
			opciones = extrasOpc[9];
			paginas = extrasPag[9];
			break;
		case '221':
			opciones = extrasOpc[10];
			paginas = extrasPag[10];
			break;
		case '222':
			opciones = extrasOpc[11];
			paginas = extrasPag[11];
			break;
		case '223':
			opciones = extrasOpc[12];
			paginas = extrasPag[12];
			break;
		case '314':  
			opciones = extrasOpc[13];
			paginas = extrasPag[13];
			break;
		case '315':  
			opciones = extrasOpc[14];
			paginas = extrasPag[14];
			break;
		case '316':
			opciones = extrasOpc[19];
			paginas = extrasPag[19];
			break;
		case '352': 
			opciones = extrasOpc[17];
			paginas = extrasPag[17];
			break;
		case '453':  
			opciones = extrasOpc[18];
			paginas = extrasPag[18];
			break;
		case 'xyz':  
			opciones = extrasOpc[15];
			paginas = extrasPag[15];
			break;
		default:
			break;
	}
	
	return new Array(opciones, paginas);
}