// JavaScript Document

$(function(){
	$('#fotos').innerfade({ speed: 1000, timeout: 4000, type: 'sequence', containerheight:285}); 
	$("a[href^=http://]").attr("target","_blank");		
	//$('#fone').mask("(99) 9999-9999");
	
$('#enviar_contato').click(function(){
		var nome = $("#nome").val();
		var email = $("#email").val();
		var telefone = $("#telefone").val();
		var msg= $("#msg").val();
		if (nome!='' & email!='' & msg!='')
		{
			$('.loading').show();
			$.post("envia_contato.php",{nome: nome, email:email, msg:msg, telefone:telefone},
				function(retorno){
					$('.loading').fadeOut();
					$('#resposta').html(retorno);
					$('form')[0].reset();
					$('#form-contato').fadeIn();					
			}) 
		}else{
					alert("Existem campos incompletos no formulário. Favor preencher todos.");
					return false;
		}
		return false;
})
	
})

function validate_email(field)
{
with (field)
{
apos=value.indexOf("@");
dotpos=value.lastIndexOf(".");
if (apos<1||dotpos-apos<2) 
  {alert('Email inválido');
  return false;}
else {return true;}
}
}

