$(function(){
  $('#clubelogin').submit(function(){
    if (!/(0[123]|10|88)[0-9]{9}/.test($(':input', this).val())) {
      alert('Cartão inválido');
      return false;
    }
  });
  
  $('#beneficios').hide();
  
  $('.aba-menu a').click(function(){
    $('.abinha').hide()
    
    $($(this).attr('href')).show()
    
    //$('.ativa').attr('src', $('.ativa').attr('src').replace('_on', '_off')).removeClass('.ativa');
    //$('img', this).addClass('ativa').attr('src', $('img', this).attr('src').replace('_off', '_on'))
  })
});

// popup
function janela(url, nome, param) {
  window.open(url, nome, param);
}