function verificaContato()
{
	if(document.formContato.dsNome.value == '')
	{
		alert('Preencha o campo Nome!');
		document.formContato.dsNome.focus();
		return false;
	}

	if(document.formContato.dsEmail.value == '')
	{
		alert('Preencha o campo E-mail!');
		document.formContato.dsEmail.focus();
		return false;
	}
	else
	{
		if (/^([\w\.\-])+\@(([\w\-])+\.)+([\w ]{2,4})$/.test(document.formContato.dsEmail.value) == false)   
		{ 
			alert("E-mail Inválido!");
			document.formContato.dsEmail.select();
			document.formContato.dsEmail.focus();
			return false;
		}
	}
	
	if(document.formContato.dsFone.value == '')
	{
		alert('Preencha o campo Fone!');
		document.formContato.dsFone.focus();
		return false;
	}
	
	if(document.formContato.dsCidade.value == '')
	{
		alert('Preencha o campo Cidade!');
		document.formContato.dsCidade.focus();
		return false;
	}
	
	if(document.formContato.dsAssunto.value == '')
	{
		alert('Preencha o campo Assunto!');
		document.formContato.dsAssunto.focus();
		return false;
	}
	

	if(document.formContato.dsMensagem.value == '')
	{
		alert('Preencha o campo Mensagem!');
		document.formContato.dsMensagem.focus();
		return false;
	}
}


function exibeSite(value)
{
	document.getElementById('conteudo_1').style.display = 'none';
	document.getElementById('conteudo_2').style.display = '';
	exibeConteudo('1');
//	if (value == '1')
//		document.getElementById('conteudo_1').style.display = '';
//	else
//		document.getElementById('conteudo_1').style.display = 'none';
//	
//	if (value == '2')
//		document.getElementById('conteudo_2').style.display = '';
//	else
//		document.getElementById('conteudo_2').style.display = 'none';
}


function barra_conceito(i,t) {
	for(x=0; x<=t; x++)
	{
		/*alert(i+" "+x+" "+t);
		if (x != i)*/
			document.getElementById('barra_'+x).style.background = '';
	}
	document.getElementById('barra_'+i).style.background = '#f1f1f1';
}
