$(document).ready(function(){
	$('#menu').css('height', 'auto');
	$('#menu .box-unidade').hide();
	$('#menu h3').click(function(){
		$(this).next().slideToggle("slow").siblings('.box-unidade:visible').slideUp("slow");		
		$(this).toggleClass('corrente');
		$(this).siblings('#menu h3').removeClass('corrente');
	});
});

function validaCampos()
{
	nome = document.getElementById("txt-nome")
	email = document.getElementById("txt-email")

	mensagem = document.getElementById("txt-mensagem")

			
	if(nome.value.length <= 1)
	{
		alert("Preencha corretamente o campo Nome.");
		nome.focus();
		return false
	}
		
	if(email.value.indexOf('@') == -1 || email.value.indexOf('.') == -1 )
	{
		alert("Preencha corretamente o campo E-mail.");
		email.focus();
		return false
	}
	
	if(mensagem.value.length <= 1)
	{
		alert("Preencha corretamente o campo mensagem.");
		mensagem.focus()
		return false
	}
			
	return true
}

function validaNewsletter()
{
	news = document.getElementById("txt-email-newsletter")
	
	if(news.value.indexOf('@') == -1 || news.value.indexOf('.') == -1 )
	{
		alert("Preencha o campo, de email, corretamente")
		news.focus()
		return false
	}
	
	return true
	
}

