$(document).ready(function(){
    $('.mascara-telefone').mask('99-99999999');
    $('#tabela-contato :text:first').focus();
	$('#outro-assunto').hide();

    $('#form-contato').submit(function(){
        if(!ContatoValida()) {
            $(this).find(':text, textarea').blur(ContatoValida).keyup(ContatoValida);
			$(this).find('select').change(ContatoValida);
            return false;
        }
    });

    $('#bt-limpar').click(function(){
        $(':text, textarea').val('');
        $(':text:first').focus();

		$('.mensagem-prenchimento-obrigatorio').fadeOut();
    });

	$('#assunto').change(function(){
		if ($(this).val() == 'O') {
			$('#outro-assunto').fadeIn();
		} else {
			$('#outro-assunto').fadeOut(function(){$(this).val('')});
		}
	});

});
