$(document).ready(function()
{
  $('#form_convide_amigo').bind('submit',function(){
    var frm = $(this);
    $.post(frm.attr('action'), frm.serialize(), function(resultado){
      $("#mensagem_validacao").html(resultado);
    });
    return false;
  });

  $('form .btAcao a').bind('click', function() {
    if (document.getElementById('checkbox_regulamento').checked == 0) {
      alert('Você deve ler e aceitar o regulamento para se associar');
      return false;
    } else {
      $('#frame').show();
      $(this).parents('form').submit();
      $("#frame").focus();
      //return false;
    }
  });

  $('a#bt_buscar').bind('click', function() {
    $(this).parents('form').submit();
    return false;
  });

  $('#tipo_pagamento').bind('change', function() {
    if ($(this).val() == "2") {
      $('label[for=dia_faturamento]').hide();
      $('#dia_faturamento').hide();
    } else {
      $('label[for=dia_faturamento]').show();
      $('#dia_faturamento').show();
    }
  });
});