function testaform() 
{
//////////////////////////////////////////////////////////////////////////////////////////
//Funcao: verifica preenchimento e validacao de todos os campos
//    - valida campo e-mail 
//    - mensagens de erro
//////////////////////////////////////////////////////////////////////////////////////////
  if ( document.contato.nome.value.length == 0 )
  {  alert ("Por favor preencha o campo 'Nome'.");
    document.contato.nome.focus();
    return false;
  }
  
  if ( document.contato.email.value.length == 0 )
  {  alert ("Por favor preencha o campo 'E-mail'.");
    document.contato.email.focus();
    return false;
  }
    
  if ( document.contato.assunto.value.length == 0 )
  {  alert ("Por favor preencha o campo 'Assunto'.");
    document.contato.assunto.focus();
    return false;
  }  
  
  if ( document.contato.mensagem.value.length == 0 )
  {  alert ("Por favor preencha o campo 'Mensagem'.");
    document.contato.mensagem.focus();
    return false;
  }
  
  else
  {  return true;
  }
}



$(document).ready(function() {
  $("#banner_interno").load("/inc/ajax_banner.php", {id_banner_tipo: 3}, fadeinbanner("#banner_interno"));
});
    function fadeinbanner(div_content){
  var loading = $('<img id="loading" alt="Carregando" title="Carregando" src="/images/ajax/ajax_tiny_black.gif" />').appendTo(div_content).hide();
  loading.ajaxStart(function(){ $(this).show(); });
  loading.ajaxStop(function(){ $(this).hide(); });    
  loading.ajaxSuccess(function(){
  $(div_content).hide();
  $(div_content).fadeIn("slow");
   });    
}
