// JavaScript Document

	function modifica_objetos(id)
	{
		document.getElementById("texto_"+id).style.color="#FFF";
		document.getElementById("imagem_"+id).src='img/butao2.png';
		document.getElementById(id).style.cursor="pointer";
	
	}
	
	function modifica_objetosI(id)
	{
		document.getElementById("texto_"+id).style.color="#848B84";
		document.getElementById("imagem_"+id).src='img/butao.png';
	}
	
	function depoimento(id)
	{
		document.getElementById("link_"+id).style.color="#FFF";
		document.getElementById("nome_"+id).style.color="#FFF";
		document.getElementById("empresa_"+id).style.color="#FFF";
		document.getElementById(id).style.cursor="pointer";
	}
	
	function depoimentoI(id)
	{
		document.getElementById("link_"+id).style.color="#848B84";
		document.getElementById("nome_"+id).style.color="#848B84";
		document.getElementById("empresa_"+id).style.color="#848B84";
	}
	
	function redirecionar(local)
	{
		document.location.href=local;
	}
	
