$(document).ready(function () {
	$("#cep").mask("99999-999");
	$("#telefone").mask("(99) 9999-9999");
	$("#nascimento").mask("99/99/9999");
	$("#uf").mask("aa");
	
	$("#form input").focus(function () {
		$(this).removeClass('error');
	});

	$("#form").submit(function () {		
		var erro = false;
		$(this).find('table input').each(function () {
			if ($(this).attr('id') != 'complemento' && $(this).val() == '') {
				$(this).addClass('error');
				erro = true;	
			}
		});
		
		if ($("#senha").val() != $("#senha2").val()) {
			$("#senha2").addClass('error');	
			erro = true;
		}
		
		if (erro) {
			$("#erro").remove();
			$("#form").before($("<div />").attr('id','erro').append($("<span />").html(' ')).append(ERROR_pre_msg));
			return false;
		}
		return true;
	});
});
