// carregamento automático de funções //
$(document).ready(function(){

        
	$('#btnNews').click(function(){
    	   
    var php = location.href + "capa/ajax/news";
    variaveis = 'nome='+$('#news_nome').val()+'&email='+$('#news_email').val();

    if(validaEmail($('#news_email').val()) && $('#news_email').val().length > 1) {
      if($('#news_nome').val().length > 2 && $('#news_nome').val() != 'Nome') {
        $.ajax({
    		  type: "POST",
    		  url: php,
    		  data: variaveis,
    		  success: function(retorno) {
    		  clear_form_elements('#form_news');
          $('#retorno').html(retorno);
          }
    	    });
      }
      else
        $('#retorno').html('Preencha corretamente o campo nome');
    }
    else
      $('#retorno').html('Preencha corretamente o campo e-mail');
    return false;
    
	});
 
}); 



