jQuery(function($){
  
	$("#cpf").mask("999.999.999-99");
	$("#cep").mask("99999-999");
	$("#fone,#celular").mask("(99) 9999-9999");
	$("#data_nascimento").mask("99/99/9999");
	
 });
   
function sucesso() { $('#erros').show("slow"); }

function carregando() {
 $('#erros').show("slow"); 
 }


$(document).ready(function() {


    $("#curriculo1").submit(function() {
        $(this).ajaxSubmit({
		target:'#erros',
		beforeSubmit:carregando,
		success:sucesso
		});  
        return false;  
		
    }); 

	
	
}); 
 
