$(document).ready(function() {
  
//  $('#menu_abas_secoes_opcoes li a').bind('mouseover', function () {
//    if (!$(this).parent('li').hasClass('aba_ativo')) {
//      $('#menu_abas_secoes_opcoes li').each(function() {$(this).removeClass('aba_ativo')});
//
//      var aba = '#opcoes_busca_' + $(this).parent('li').attr('class');
//      var cor = 'cor_' + $(this).parent('li').attr('class');
//
//      $(this).parent('li').addClass('aba_ativo');
//      $('#envolve_opcoes_busca ul').each(function() {$(this).css('display', 'none')});
//      $(aba).css('display', 'block');
//      $('#envolve_opcoes_busca').removeClass().addClass(cor);
//    }
//    return false;
//  });

  $('span.buscar a').bind('click', function() {
    $(this).parents('form').submit();
    //var dados = $(this).parents('form').submit();
    //var url = $(this).parents('form').attr('action');
    /*$.post(url, dados, function(callback) {
      alert(callback);
    });*/
    return false;
  });
});
