/**** FUNÇÕES PARA MOSTRAR TEXTOS REFERENTES AS LÍNGUAS ****/

/**** OS TEXTOS, MENUS, TÍTULOS ESTÃO SEPARADOS POR PÁGINAS, ISSO FACILITA PARA CHAMAR APENAS UMA FUNÇÃO COM TODAS AS DEMAIS( REFERENTES A CADA PÁGINA) ****/


//Variável global para identificar a língua atual do site
// 0 -> português, 1 -> espanhol, 2 -> inglês

/*
//texto em português
function linguaPortuguesa(identificaLingua){
	if (identificaLingua != 0){
		identificaLingua = 0;
		//window.location.reload();
		alert("PORTUGUES" + "--- " + identificaLingua);

	}
}

//texto em espanhol
function linguaEspanhola(identificaLingua){
	if (identificaLingua != 1){
		identificaLingua = 1;
		//window.location.reload();
		alert("ESPANHOL");
	}
}

//texto inglês
function linguaInglesa(identificaLingua){
	if (identificaLingua != 2){
		identificaLingua = 2;
		//window.location.reload();
		alert("INGLÊS");
	}
}
*/
/***************************
****************************
** FUNÇÃO DE CADA PÁGINA  **
****************************
***************************/

function paginaInicial(lingua){
	//alterarMenu(lingua); 
	tituloIndex(lingua);
}

function paginaEmpresa(lingua){
	//alterarMenu(lingua);
	btPages(lingua);
	textoEmpresa(lingua);
	tituloEmpresa(lingua);
}

function paginaContato(lingua){
	tituloContato(lingua);
	//alterarMenu(lingua);
	textoDadosEmpresa(lingua);
	textoCaixaContato(lingua);	
}

function paginaTendencias(lingua){
	//alterarMenu(lingua);
	tituloTendencia(lingua);
	textoTendenciaBaixo(lingua);
	textoTendenciaCima(lingua);
	ampliaCor(lingua);
}

function paginaProdutos(lingua){
	//alterarMenu(lingua);
	tituloProduto(lingua);
	categoriaProdutos(lingua);
}

function paginaQualidade(lingua){
	//alterarMenu(lingua);
	btPages(lingua);
	tituloQualidade(lingua);
	textoQualidadePolitica(lingua);
	textoQualidadeISO(lingua);
	textoQualidadeSustentabilidade(lingua);	
}

function paginaSustentabilidade(lingua){
	//alterarMenu(lingua);
	btPages(lingua);
	tituloSustentabilidade(lingua);
	textoQualidadeSustentabilidade(lingua);
	textoSustentabilidadeAcoes(lingua);
	textoSustentabilidadeMeioAmbiente(lingua);
	tituloSustentabilidade(lingua);	
}


/***************************
****************************
**     ALTERAR MENU       **  
****************************
***************************/

function alterarMenu(identificaLingua){
	if (identificaLingua == 0){
		document.getElementById("btHome").innerHTML = "Home";
		document.getElementById("btEmpresa").innerHTML = "Quem somos";
		document.getElementById("btContato").innerHTML = "Contato";
		document.getElementById("btTendencias").innerHTML = "Tendências";
		document.getElementById("btProdutos").innerHTML = "Produtos";
	}
	else if (identificaLingua == 1)
	{
		document.getElementById("btHome").innerHTML = "Home";
		document.getElementById("btEmpresa").innerHTML = "Quien somos";
		document.getElementById("btContato").innerHTML = "Contactenos";
		document.getElementById("btTendencias").innerHTML = "Tendencias";
		document.getElementById("btProdutos").innerHTML = "Productos";	
	}
	else if (identificaLingua == 2) //inglês
	{
		document.getElementById("btHome").innerHTML = "Home";
		document.getElementById("btEmpresa").innerHTML = "Who we are";
		document.getElementById("btContato").innerHTML = "Contacts";
		document.getElementById("btTendencias").innerHTML = "Trends";
		document.getElementById("btProdutos").innerHTML = "Products";	
	}

}

/***************************
****************************
**       MENU PAGES       **  
****************************
***************************/

function btPages(identificaLingua){
		if (identificaLingua == 0)
		{
			document.getElementById("textoBotaoEmpresa").innerHTML = "Empresa";
			document.getElementById("textoBotaoQualidade").innerHTML = "Qualidade";
			document.getElementById("textoBotaoSustentabilidade").innerHTML = "Sustentabilidade";
		}
		else if (identificaLingua == 1)
		{
			document.getElementById("textoBotaoEmpresa").innerHTML = "Empresa";
			document.getElementById("textoBotaoQualidade").innerHTML = "Cualidad";
			document.getElementById("textoBotaoSustentabilidade").innerHTML = "Sustentabilidad";
		}
		else if (identificaLingua == 2)
		{
			document.getElementById("textoBotaoEmpresa").innerHTML = "Company";
			document.getElementById("textoBotaoQualidade").innerHTML = "Quality";
			document.getElementById("textoBotaoSustentabilidade").innerHTML = "Sustainability";
		}
}



/***************************
****************************
**     ALTERAR TEXTOS     **  
****************************
***************************/


/********* TEXTO DA PÁGINA EMPRESA **********/
function textoEmpresa(identificaLingua){
	if (identificaLingua == 0){
		//texto português, seção empresa
		document.getElementById("conteudoTexto").innerHTML = 
		"<h2>Caracterizada pela <b>qualidade</b> e <b>inovação</b>, a <b>GETTI</b> Química Ltda " +
		"está inserida no setor coureiro desde 1993 e ao longo dos anos " +
		"vem buscando concretizar seu maior intuito: atender a demanda " +
		"de <b>tecnologia</b> e <b>assistência técnica</b>, com produtos de alta " +
		"qualidade.</h2><br />" +
		"<h2>A <b>GETTI</b> possui laboratório de pesquisa e desenvolvimento para " +
		"testes químico-físicos, de controle de qualidade e aplicativo. " + 
		"A empresa dispõe de instrumentação sofisticada e moderna " +
		"para perfeito controle das matérias-primas e produtos  " +
		"produzidos.</h2>";
	}
	else if (identificaLingua == 1){
		//texto espanhol
		document.getElementById("conteudoTexto").innerHTML = 
		"<h2>Caracterizada por la <b>calidad</b> e <b>innovación</b>, <b>GETTI</b> Química LTDA " +
		"está inserida en el sector de cueros desde 1993, y a lo largo de los " +
		"años viene en busca de concretizar sus mayores propósitos: " +
		"atender a la demanda de tecnologia y assistencia técnica, con " +
		"productos de alta cualidad.</h2><br />" +
		"<h2><b>GETTI</b> cuenta con laboratorios de pesquisa y desarollo para " +
		"testes químicos-físicos, de control de calidad y de aplicación." +
		"A empresa cuenta com instrumentación sofisticada y moderna " +
		"para el perfecto control de las materias primas y productos " +
		"producidos.</h2>";
	}
	else if (identificaLingua == 2){
		//texto inglês
		document.getElementById("conteudoTexto").innerHTML = 
		"<h2>Characterized by the quality and innovation, <b> GETTI Química LTDA </b> " +
		"Is inserted in the leather sector since 1993, and over the years, it has " +
		"been seeking to achieve its greatest purpose: to meet the " +
		"demands of technology and technical assistence with hight quality products.</h2><br />" +
		"<h2><b>GETTI</b> has research and development laboratory for chemical-" +
		"physical tests, quality control and aplicative. The Company has "+
		"sophisticated and modern instrumentation available for the " +
		"perfect control of the raw materials and procuced products.</h2>" ;
	}
}
/********** TEXTO DA PÁGINA DE QUALIDADE ************/	

function textoQualidadePolitica(identificaLingua){
	if (identificaLingua == 0){
		//texto português, seção qualidade, Política de Qualidade
		document.getElementById("conteudoTextoEsquerda").innerHTML =
		"<h2>Fornecer produtos químicos com tecnologia " +
		"avançada para o setor coureiro, visando suprir " +
		"necessidades dos clientes, com o compromisso " +
		"de qualidade, agilidade e melhoria contínua " +
		"dos processos.</h2><br />" +
		"<h2>Nossa empresa mantém um rigoroso controle " +
		"de qualidade, dentro das normas de higiene " +
		"e segurança exigidas pelos órgãos competentes " +
		"e em cumprimento às leis e políticas internas " +
		"respeitando o consumidor e o meio ambiente.</h2>";
	}
	else if (identificaLingua == 1){
		//texto espanhol
		document.getElementById("conteudoTextoEsquerda").innerHTML =
		"<h2>Proveer productos químicos com tecnología " +
		"avanzada para el sector de cueros, tratando " +
		"de suministrar las necessidades dos clientes, con " +
		"el compromiso de calidad, agilidad, y mejora " +
		"continua de los procesos.</h2><br />" +
		"<h2>Nuestra empresa mantiene un riguroso control de " +
		"calidad, dentro de los estándares de higiene y " +
		"seguridad, exigidos por los órganos competentes, y " +
		"en el cumplimiento de la ley y de las políticas internas " +
		"respetando el consumidor y em medio ambiente.</h2>";
	}
	else if (identificaLingua == 2){
		//texto inglês
		document.getElementById("conteudoTextoEsquerda").innerHTML =
		"<h2>Provide chemical products with advanced " +
		"technology for the leather sector, aiming to " +
		"supply the customers needs, with the commitment " +
		"of quality, agility, and continuous " +
		"improvement of the processes.</h2><br />" +
		"<h2>Our company maintains a strict quality control, " +
		"within the hygiene and safety standards required " +
		"by the competent departments, and in compliance " +
		"with the law and internal policies respecting " +
		"the consumer and the enviroment.</h2>";
	}

}

function textoQualidadeISO(identificaLingua){
	if (identificaLingua == 0){
		//texto português, seção qualidade, Certificação ISO
		document.getElementById("conteudoTextoDireita").innerHTML = 
		"<h2>Somos Empresa certificada pela norma NBR ISO " +
		"9001:2008 e o organismo certificador é o <b>Bureau " +
		"Veritas Certification</b>.</h2>" ; 
	}
	else if (identificaLingua == 1){
		//texto espanhol
		document.getElementById("conteudoTextoDireita").innerHTML =
		"<h2>Nosotros somos una empresa certificada por el " +
		"estándar NBR 9001:2000, y la organización " +
		"certificada es el <b>Bureau Veritas Certification</b></h2>" ;
	}
	else if (identificaLingua == 2){
		//texto inglês
		document.getElementById("conteudoTextoDireita").innerHTML = 
		"<h2>We are a Company certified by the standard NBR " +
		"ISO 9001:2000, and the certifying organism is the " +
		"<b>Bureau Veritas Certification</b>.</h2>";
	}

}

/******************* TEXTO NO RODAPÉ DA PÁGINA DE SUSTENTABILIDADE E QUALIDADE ******************/
function textoQualidadeSustentabilidade(identificaLingua){
	if (identificaLingua == 0){
		//texto português, seção qualidade, descrição
		document.getElementById("textoRodape").innerHTML =
		"<h3>Aliando a linha de produtos à sua equipe técnica, a GETTI está preparada para oferecer as melhores " +
		"propostas em termos de produtos e serviços. Este esforço permite presença qualificada no mercado " +
		"através de uma rede de serviços de assistência técnica e logística, que é a base da estratégia de " +
		"Marketing da GETTI.</h3>";
	}
	else if (identificaLingua == 1){
		//texto espanhol
		document.getElementById("textoRodape").innerHTML =
		"<h3>Aliando la línea de productos a su equipe técnica, GETTI está preparada para ofrecer las mejores "	 +
		"propuestas en termos de productos y servicios. Este esfuerzo permite presencia calificada en el " +
		"mercado, debido a una red de servicios de asintencia técnica y logística, que es la base de la " +
		"estrategia de marketing de la GETTI.</h3>";
	}
	else if(identificaLingua == 2){
		//texto inglês
		document.getElementById("textoRodape").innerHTML =
		"<h3>Allying the products line to it's technical team, GETTI is prepared to offer the best proposals in terms of " +
		"products and services. This effort enables qualified presence in the market through a technical " +
		"assistance and logistics services net, which is the basis of GETTI's Marketing strategy.</h3>";
	}
}
/***************TEXTO DA PÁGINA DE SUSTENTABILIDADE ****************/

function textoSustentabilidadeAcoes(identificaLingua){
	if (identificaLingua == 0){
		//texto português, seção sustentabilidade, Ações sustentáveis
		document.getElementById("conteudoTextoEsquerda").innerHTML = 
		"<h2>Somos uma empresa preocupada com a " +
		"Gestão Ambiental, pois  promovemos ações " +
		"continuadas de aperfeiçoamento gerencial " +
		"na área de meio ambiente.</h2><br />" +
		"<h2>Estamos sempre promovendo iniciativas que " +
		"contribuam para a implantação e aperfeiçoamento " +
		"dos conceitos de desenvolvimento " +
		"sustentável. Recen-temente a empresa foi " +
		"qualificada como \"Empresa Amiga do Meio " +
		"Ambiente\", através da <b>Fundamental</b> - "  +
		"Fundação Desenvolvimento Ambiental.</h2>";
	}
	else if (identificaLingua == 1){
		//texto espanhol
		document.getElementById("conteudoTextoEsquerda").innerHTML =
		"<h2>Nosotros somos una empresa preocupada " +
		"con la Gestión Ambiental, pues promovemos " +
		"acciones continuadas de mejora gerencial " +
		"en el área del médio ambiente.</h2><br />" +
		"<h2>Estamos siempre promoviendo iniciativas que " +
		"contribuyen para la inplantación y mejora de " +
		"los conceptos de los desarrollos sustentable. "+
		"Recentemiente la empresa fue calificada " +
		"como \"Empresa Amiga del Médio Ambiente\", " +
		"por la <b>Fundamental</b> - Fundação de Desenvolvimento " +
		"Ambiental.</h2>";	
	}
	else if (identificaLingua == 2){
		//texto inglês
		document.getElementById("conteudoTextoEsquerda").innerHTML =
		"<h2>We are a company concerned with the environmental " +
		"Management because we promote  " +
		"continuing actions to improve managment " +
		"in the environmental area.</h2><br />" +
		"<h2>We are always promoting initiatives that " +
		"contribute for the implantation and perfecting " +
		"of sustainable development concepts. " +
		"Recently, the Company was qualified as " +
		" \"Environment Friendly Company\" through " +
		"<b>Fundamental</b> - Fundação Desenvolvimento " +
		"Ambiental.</h2>";
	}
}

function textoSustentabilidadeMeioAmbiente(identificaLingua){
	if (identificaLingua == 0){
		document.getElementById("conteudoTextoDireita").innerHTML =
		//texto português, seção sustentabilidade, Políticas de Meio Ambiente
		"<h2>Estamos em constante busca de produtos " +
		"que sejam biodegradáveis e menos nocivos " +
		"ao meio ambiente. A exemplo disto, temos a " +
		"substituição e eliminação do 'nonil fenol', " +
		"produto de biodegradabilidade lenta e nocivo " +
		"ao meio ambiente.</h2>";
/*		+
		"<img id='imgFundamental' height='132' width='97' align='right' src='../../imagens/qualidade/fundamental.png' class='fundamental' />";
*/	}
	else if (identificaLingua == 1){
		//texto espanhol
		document.getElementById("conteudoTextoDireita").innerHTML =
		"<h2>Estamos en constante búsqueda de productos " +
		"que sean biodegradables y menos nocivos al " +
		"medio ambiente. Como ejemplo de esto, " +
		"tenemos la sustitución y eliminación del \"nonil " +
		"fenol\", producto biodegrable lento y " +
		"nocivo al médio ambiente.</h2>";	
	}
	else if (identificaLingua == 2){
		//texto inglês
		document.getElementById("conteudoTextoDireita").innerHTML =
		"<h2>We are constantly looking for products that are " +
		"biodegradable and less prejuducial to the " +
		"environment. As example, we have the subs" +
		"titution and elimination of \"nonil phenol\", " +
		"product of slow biodegradability and damaging " +
		"to the environment.</h2>";
	}
	
}

/********************* TEXTO DA PÁGINA DE TENDÊNCIAS **********************/
function textoTendenciaCima(identificaLingua){
	if (identificaLingua == 0){
		//texto português, seção tendências de moda, parte superior 
		document.getElementById("textoAlto").innerHTML = 
		"<h2>As passarelas internacionais já lançaram suas apostas para o Inverno 2011. A temporada  promete peças incríveis, que "+
"se tornarão objeto de desejo entre o público feminino.</h2><br />"+
		"<h2>A estação fria 2011 traz duas tendências contrárias em coexistência: de um lado um estilo totalmente ladylake; do outro, a "+
"inspiração masculina. A temporada vem com calçados extremamente femininos e delicados, como o clássico pump, com "+
"tiras no tornozelo, ou tiras em T - feminilidade com um toque bem retrô. Ao lado dele, oxfords, loafers, mocassins e botas com "+
"inspiração utilitária e militar, configurando um estilo mais masculinizado.</h2><br />"+
		"<h2>A estação traz ainda calçados cheios de detalhes: adornados com peles, ziperes  expostos, rendas, plumas e outros "+
"materiais.</h2><br />"+
		"<h2>O couro e a camurça continuam sendo os principais materiais na estação: eles vem cheios de texturas, em tons neutros ou "+
"ricos em cores. As clássicas estampas de onça permanecem, mas também deixam espaço para o surgimento de novos "+
"modelos exóticos, como as peles de sapo, lagarto e arraia, especialmente as coloridas.</h2>";		
	}
	else if(identificaLingua == 1){		//texto espanhol
		document.getElementById("textoAlto").innerHTML =
		"<h2>Las pasarelas internacionales ya han lanzado sus apuestas para el invierno de 2011. La temporada promete increíbles "+
"piezas que se convertirá en el objeto del deseo entre el público femenino.</h2><br />"+
		"<h2>La temporada de frío 2011 trae dos tendencias opuestas en la convivencia: de un lado un estilo totalmente “ladylake”; "+
" en el otro la inspiración masculina. La temporada viene con los zapatos muy femeninos y delicados, como el clásico “pump”, con "+
"las correas en el tobillo, o tiras en T - con un toque de feminidad y retro. A su lado, oxfords, loafers, mocasines y botas con "+
"inspiración militare y utilitario,  estableciendo un estilo más masculino.</h2><br />"+
		"<h2>La estación también lleva zapatos llenos de los detalles: adornados con pieles, los cierres expuestos, encajes, plumas"+
" y otros materiales.</h2><br />"+
		"<h2>El cuero y gamuza siguen siendo los principales materiales en la estación: vienen llenos de texturas, colores neutros "+
"o ricos en color. Las clásicas impresiones de oz se mantienen, pero también dejan espacio para el surgimiento de nuevos modelos, "+
"exótico, como la piel de rana, lagartija y raya, especialmente las coloridas.</h2>";
	}
	else if (identificaLingua == 2){
		//texto inglês
		document.getElementById("textoAlto").innerHTML = 
		"<h2>The international catwalks have already made their bet for winter 2011. The season promises amazing pieces "+
"that will become an object of desire among the feminine public.</h2><br />" +
		"<h2>The cold season 2011 brings two opposite trends in coexistence: On one side a style totally ladylike in the other, "+
"the masculine inspiration . The season comes with shoes extremely feminine and delicate, as the classic pump with ankle straps, "+
"or straps in T - femininity with a very retro touch. Beside them, oxfords, loafers, moccasins and boots with utilitarian and "+
"military inspiration , showing  a more masculine style.</h2><br />" +
		"<h2>The season also brings shoes full of details: adorned with skins, exposed zippers, lacework, plumes and other "+
"materials.</h2><br />" +
"<h2>Leather and suede are still the main materials in the season: they come full of textures, in neutral tonality or rich in "+
"colors. The classic  jaguar  patterns  remain, but also let space for the emergence of new models, exotic, as the skins of frog, "+
"lizard and stingray, especially the colored ones.";
	}
	Scroller.reset("textoAlto");
}

function textoTendenciaBaixo(identificaLingua){
	if (identificaLingua == 0){
		document.getElementById("textoBaixo").innerHTML = 
		//texto português, seção tendências, parte inferior
		"<h2><b>Historicamente vinculada aos maiores centros " +
		"produtores de moda em couro, a GETTI busca " +
		"na Europa, em especial na Itália, as inovações " +
		"tecnológicas necessárias para sua capacitação " +
		"como empresa de ponta.</b></h2>";
	}
	else if(identificaLingua == 1){
		//texto espanhol
		document.getElementById("textoBaixo").innerHTML = 
		"<h2><b>Históricamente vinculada a los mas grandes centros " +
		"productores de moda em cuero. GETTI busca en " +
		"Europa, espcial en Italia, las innovaciones " +
		"tecnológicas necesarias para su capacitación como " +
		"empresa de punta.</b></h2>";
	
	}
	else if(identificaLingua == 2){
		//texto inglês
		document.getElementById("textoBaixo").innerHTML = 
		"<h2><b>Historically linked to the major leather fashion " +
		"producer centers, GETTI gets in Europe, particularly " +
		"in Italy, the technical innovations necessary to it's " +
		"competence as a top of market company.</b></h2>";
	
	}
	
}

/**************************** TEXTO PÁGINA DE CONTATO ********************/
function textoDadosEmpresa(identificaLingua){
	if (identificaLingua == 0){
		//texto português, seção contato, dados da empresa
		document.getElementById("dadosEmpresa").innerHTML =
		"<b>GETTI Química LTDA.</b><br />" +
		"Rodovia RS 239, N°710 - CEP: 93352-000 <br />" +
		"Novo Hamburgo/RS - Brasil <br />" +
		"Fone: (55 51) 3553.3355 Fax: (55 51) 3553.3377 <br />" +
		"E-mail: getti@getti.com.br";
	}
	else if (identificaLingua == 1){
		//texto espanhol
		document.getElementById("dadosEmpresa").innerHTML =
		"<b>GETTI Química LTDA.</b><br />" +
		"Rodovia RS 239, N°710 - CEP: 93352-000<br />" +
		"Novo Hamburgo/RS - Brazil<br />" +
		"Teléfono: (55 51) 3553.3355 Fax: (55 51) 3553.3377<br />" +
		"E-mail: getti@getti.com.br";
		
		
	
	}
	else if (identificaLingua == 2){
		//texto inglês
		document.getElementById("dadosEmpresa").innerHTML = 
		"<b>GETTI Química LTDA.</b><br />" +
		"Rodovia RS 239, N° 710 - Zip Code: 93352-000<br />" +
		"Novo Hamburgo/RS - Brazil<br />" +
		"Telephone: (55 51) 3553.3355 Fax: (55 51) 3553.3377<br />" +
		"E-mail: getti@getti.com.br";	
	}
}


/*******************************************************************
********************************************************************
************				TÍTULOS                   **************
********************************************************************
********************************************************************/

function tituloIndex(identificaLingua){
	if (identificaLingua == 0){
		//texto português
		document.getElementById("titulo").innerHTML = "<img src='imagens/texto_portugues.png' id='img_titulo' alt='SOLUÇÕES GLOBAIS & RESPEITO AO MEIO-AMBIENTE' />";
		//document.getElementById("titulo").innerHTML = "SOLUÇÕES GLOBAIS & RESPEITO AO MEIO-AMBIENTE";
		//document.getElementById("direitos").innerHTML = "<b>Todos os direitos reservados.</b>";
	}
	else if (identificaLingua == 1){
		//texto espanhol
		document.getElementById("titulo").innerHTML = "<img src='imagens/texto_espanol.png' id='img_titulo' alt='SOLUÇÕES GLOBAIS & RESPEITO AO MEIO-AMBIENTE' />";
		//document.getElementById("titulo").innerHTML = "SOLUCIONES GLOBALES & RESPECTO POR EL MEDIO AMBIENTE";
		//document.getElementById("direitos").innerHTML = "<b>Todos los derechos reservados.</b>";
	}
	else if (identificaLingua == 2){
		//texto inglês
		document.getElementById("titulo").innerHTML = "<img src='imagens/text_english.png' id='img_titulo' alt='SOLUÇÕES GLOBAIS & RESPEITO AO MEIO-AMBIENTE' />";
		//document.getElementById("titulo").innerHTML = "GLOBAL SOLUTIONS & ENVIRONMENT RESPECT";
		//document.getElementById("direitos").innerHTML = "<b>All rights reserved.</b>";
	}

}
function tituloContato(identificaLingua){
	if (identificaLingua == 0){
		//texto português
		document.getElementById("conteudoTitulo").innerHTML = "<h1>CONTATO</h1>";
	}
	else if (identificaLingua == 1){
		//texto espanhol
		document.getElementById("conteudoTitulo").innerHTML = "<h1>CONTÁCTENOS</h1>";
	}else if (identificaLingua == 2){
		//texto inglês
		document.getElementById("conteudoTitulo").innerHTML = "<h1>CONTACT</h1>";
	}
}

function tituloEmpresa(identificaLingua){
	if (identificaLingua == 0){
		//texto português
		document.getElementById("conteudoTitulo").innerHTML = "<h1>NOSSA EMPRESA</h1>";
	}

	else if(identificaLingua == 1){
		//texto espanhol
		document.getElementById("conteudoTitulo").innerHTML = "<h1>NUESTRA EMPRESA</h1>";
	}
	else if(identificaLingua == 2){
		//texto inglês
		document.getElementById("conteudoTitulo").innerHTML = "<h1>OUR COMPANY</h1>";
	}

}

function tituloQualidade(identificaLingua){
	if (identificaLingua == 0){
		//texto português
		//document.getElementById("conteudoTitulo").innerHTML = "<h1>QUALIDADE</h1>";
	}
	else if (identificaLingua == 1){
		//document.getElementById("conteudoTitulo").innerHTML = "<h1>CALIDAD</h1>";
	}
	else if(identificaLingua == 2){
		//texto inglês
		//document.getElementById("conteudoTitulo").innerHTML = "<h1>QUALITY</h1>";
	}

}

function tituloSustentabilidade(identificaLingua){
	if (identificaLingua == 0){
		//texto português
		//document.getElementById("conteudoTitulo").innerHTML = "<h1>SUSTENTABILIDADE</h1>";
	}
	else if(identificaLingua == 1){
		//texto espanhol
		//document.getElementById("conteudoTitulo").innerHTML = "<h1>SUSTENTABILIDAD</h1>";
	}
	else if(identificaLingua == 2){
		//texto inglês
		//document.getElementById("conteudoTitulo").innerHTML = "<h1>SUSTAINABILITY</h1>";
	
	}
}

function tituloTendencia(identificaLingua){
	if (identificaLingua == 0){
		//texto português
		//document.getElementById("conteudoTitulo").innerHTML = "<h1>TENDÊNCIAS DE MODA</h1>";
		document.getElementById("conteudoTitulo").innerHTML = "<img src='../../imagens/tendencias/titulo_port.png' style='margin-left:25px' />";
	}
	else if(identificaLingua == 1){
		document.getElementById("conteudoTitulo").innerHTML = "<h1>TENDENCIAS DE MODA</h1>";
	}
	else if (identificaLingua == 2){
		//texto inglês
		document.getElementById("conteudoTitulo").innerHTML = "<h1>FASHION TRENDS</h1>";
	
	}
	
}

function tituloProduto(identificaLingua){
	if (identificaLingua == 0){
		//texto português
		document.getElementById("conteudoTitulo").innerHTML = "<h1>PRODUTOS</h1>";
	}
	else if (identificaLingua == 1){
		//texto espanhol
		document.getElementById("conteudoTitulo").innerHTML = "<h1>PRODUCTOS</h1>";
	}
	else if (identificaLingua == 2){
		//texto inglês
		document.getElementById("conteudoTitulo").innerHTML = "<h1>PRODUCTS</h1>";
	
	}
}

function textoCaixaContato(identificaLingua){

	function envieUmaMensagem(identificaLingua){
		if (identificaLingua == 0){
			document.getElementById("contatoPara").innerHTML = "Envie uma mensagem";
		}
		else if (identificaLingua == 1){
			document.getElementById("contatoAssunto").innerHTML = "Envie una mensaje";
		}
		else if (identificaLingua == 2){
			document.getElementById("contatoMensagem").innerHTML = "Send a message";
		}
	}
	
	function textoContatoPara(identificaLingua){
		if (identificaLingua == 0){
			//texto português
			document.getElementById("contatoPara").innerHTML = "De";
		}
		else if (identificaLingua == 1){
			//texto espanhol
			document.getElementById("contatoPara").innerHTML = "De";
		}
		else if (identificaLingua == 2){
			//texto inglês
			document.getElementById("contatoPara").innerHTML = "From";
		}
	}
	
	function textoContatoAssunto(identificaLingua){
		if (identificaLingua == 0){
			//texto português
			document.getElementById("contatoAssunto").innerHTML = "Assunto";
		}
		else if (identificaLingua == 1){
			//texto espanhol
				document.getElementById("contatoAssunto").innerHTML = "Assunto";
		}
		else if (identificaLingua == 2){
			//texto inglês
			document.getElementById("contatoAssunto").innerHTML = "Subject";
		}
	}
	
	function textoContatoMensagem(identificaLingua){
		if (identificaLingua == 0){
			//texto português
			document.getElementById("contatoMensagem").innerHTML = "Mensagem";
		}
		else if(identificaLingua == 1){
			//texto espanhol
			document.getElementById("contatoMensagem").innerHTML = "Mensaje";
		}
		else if(identificaLingua == 2){
			//texto inglês
			document.getElementById("contatoMensagem").innerHTML = "Message";
		}
	}
	
	function textContatoSubmit(identificaLingua){
		if (identificaLingua == 0){
			//texto português
			document.getElementById("btSubmit").value = "Enviar";
		}
		else if (identificaLingua == 1){
			//texto espanhol
			document.getElementById("btSubmit").value = "Enviar";
		}
		else if (identificaLingua == 2){
			//texto inglês
			document.getElementById("btSubmit").value = "Send";
		}
	}

}

function tituloConteudoTextoSustentabilidade(identificaLingua){
	if (identificaLingua == 0){
		//texto português
		document.getElementById("").innerHTML = "";

	}
	else if (identificaLngua == 1){
		//texto espanhol
		document.getElementById("").innerHTML = "Acciones <br> Sustentables";
		document.getElementById("").innerHTML = "Políticas de <br> medio ambiente";
	}
	else if ( identificaLingua == 2){
		//texto inglês
		document.getElementById("").innerHTML = "Sustainable Actions"
		document.getElementById("").innerHTML = "Environmental Polices";
	}
}

function tituloConteudoTextoQualidade(identificalingua){
		if (identificaLingua == 0){
			document.getElementById("").innerHTML = "Política de <br> Qualidade";
			document.getElementById("").innerHTML = "Certificação <br> ISO"
		}
		else if (identificaLingua == 1){
			document.getElementById("").innerHTML = "Política de <br> Calidad";
			document.getElementById("").innerHTML = "Certificaión <br> ISO";
		}
		else if (identificaLingua == 2){
			document.getElementById("").innerHTML = "Quality <br> Police";
			document.getElementById("").innerHTML = "ISO <br> Certification";
		}
}

function ampliaCor(identificaLingua){
	if (identificaLingua == 0){
		document.getElementById("ampliarCor").innerHTML = "<img src='../../imagens/tendencias/clique_para_ampliar.png' alt='Clique para Ampliar' />";
	//	document.getElementById("ampliarCor").innerHTML = "<center> TENDÊNCIA DE CORES <br> CLIQUE PARA AMPLIAR </center>";
	}
	else if (identificaLingua == 1){
		document.getElementById("ampliarCor").innerHTML = "<img src='../../imagens/tendencias/clic_para_ampliar.png' alt='Clique para Ampliar' />";
	}
	else if (identificaLingua == 2){
		document.getElementById("ampliarCor").innerHTML = "<img src='../../imagens/tendencias/click_to_enlarge.png' alt='Click to enlarge' />";
	}
}

function categoriaProdutos(identificaLingua){
/*	if (identificaLingua == 0){
	/*	//primeira linha
		//document.getElementById("poliuretanos").innerHTML = "<a href=\"categorias/portugues/categoria_um.php\" class=\"bumpbox\" title=\"das\"> </a>";
		//document.getElementById("pigmentos").innerHTML = "<a href=\"categorias/portugues/categoria_dois.php\" class=\"bumpbox\">Pigmentos aniônicos/catiônicos </a>";
		//segunda linha
		//document.getElementById("ligantes").innerHTML = "<a href=\"categorias/portugues/categoria_tres.php\" class=\"bumpbox\">Ligantes protéicos</a>";
		//document.getElementById("fundo").innerHTML =	"<a href=\"categorias/portugues/categoria_quatro.php\" class=\"bumpbox\">Fundos de acabamento</a>";
		//terceira linha
		//document.getElementById("resina").innerHTML = "<a href=\"categorias/portugues/categoria_cinco.php\" class=\"bumpbox\">Resinas acrílicas</a>";
		//document.getElementById("ceras").innerHTML =	"<a href=\"categorias/portugues/categoria_seis.php\" class=\"bumpbox\">Filler e ceras</a>";
		//divisória
		//document.getElementById("acabamentos").innerHTML = "ACABAMENTOS";
		//document.getElementById("recurtimentos").innerHTML = "RECURTIMENTOS";
		//quarta linha
		//document.getElementById("taninos").innerHTML = "<a href=\"categorias/portugues/categoria_sete.php\" class=\"bumpbox\">Taninos sintéticos, naturais e <br> resinas recurtentes</a>";
		//document.getElementById("engraxantes").innerHTML = "<a href=\"categorias/portugues/categoria_oito.php\" class=\"bumpbox\">Engraxantes sintéticos e naturais</a>";
	}
	else if (identificaLingua == 1){
		//primeira linha
		document.getElementById("poliuretanos").innerHTML = "<a href=\"categorias/espanhol/categoria_um.php\" class=\"bumpbox\"> Poliuretanos acuosos</a>" ;
		document.getElementById("pigmentos").innerHTML = "<a href=\"categorias/espanhol/categoria_dois.php\" class=\"bumpbox\"> Pigmentos aniónicos/catiónicos </a>" ;
		//segunda linha
		document.getElementById("ligantes").innerHTML = "<a href=\"categorias/espanhol/categoria_tres.php\" class=\"bumpbox\"> Ligantes proteicos </a>";
		document.getElementById("fundo").innerHTML =	"<a href=\"categorias/espanhol/categoria_quatro.php\" class=\"bumpbox\"> Fondos de acabado </a>";
		//terceira linha
		document.getElementById("resina").innerHTML = "<a href=\"categorias/espanhol/categoria_cinco.php\" class=\"bumpbox\"> Resinas acrílicas </a>";
		document.getElementById("ceras").innerHTML = "<a href=\"categorias/espanhol/categoria_seis.php\" class=\"bumpbox\"> Filler y ceras </a>";
		//divisória
		document.getElementById("acabamentos").innerHTML = "ACABADOS";
		document.getElementById("recurtimentos").innerHTML = "RECURTIDOS";
		//quarta linha
		document.getElementById("taninos").innerHTML = "<a href=\"categorias/espanhol/categoria_sete.php\" class=\"bumpbox\"> Taninos sintéticos, naturales y <br> resinas de recurtición </a>";
		document.getElementById("engraxantes").innerHTML = "<a href=\"categorias/espanhol/categoria_oito.php\" class=\"bumpbox\"> Engrases sintéticos y naturales </a>";
		
	}
	else if (identificaLingua == 2){
		//primeira linha
		document.getElementById("poliuretanos").innerHTML = "<a href=\"categorias/ingles/categoria_um.php\" class=\"bumpbox\"> Aqueous polyurethanes </a>";
		document.getElementById("pigmentos").innerHTML = "<a href=\"categorias/ingles/categoria_dois.php\" class=\"bumpbox\"> Anionic/cationic pigments </a>";
		//segunda linha
		document.getElementById("ligantes").innerHTML = "<a href=\"categorias/ingles/categoria_tres.php\" class=\"bumpbox\"> Protean linking agents </a>";
		document.getElementById("fundo").innerHTML = " <a href=\"categorias/ingles/categoria_quatro.php\" class=\"bumpbox\"> Finishing bottoms </a>";
		//terceira linha
		document.getElementById("resina").innerHTML = "<a href=\"categorias/ingles/categoria_cinco.php\" class=\"bumpbox\"> Acrylic resins </a>";
		document.getElementById("ceras").innerHTML =	"<a href=\"categorias/ingles/categoria_seis.php\" class=\"bumpbox\"> Filler and waxes </a>";
		//divisória
		document.getElementById("acabamentos").innerHTML = "FINISHINGS";
		document.getElementById("recurtimentos").innerHTML = "RETANNINGS";
		//quarta linha
		document.getElementById("taninos").innerHTML = "<a href=\"categorias/ingles/categoria_sete.php\" class=\"bumpbox\"> Synthetic, natural tannins,<br />and retanning resins </a>";
		document.getElementById("engraxantes").innerHTML = "<a href=\"categorias/ingles/categoria_oito.php\" class=\"bumpbox\"> Synthetic and natural fatliquors </a>";
	}
*/
	var a = 1+1;
}

