$(document).ready(function () {

  $('#link_mostrar_ranking_profissionais span span').toggle(
    function () {

      $('.esconde_ranking_profissionais').toggle();
      $(this).text('Mostrar TOP20');

    },
    function () {

      $('.esconde_ranking_profissionais').toggle();
      $(this).text('Mostrar todos');

    }
  );

  $('#link_mostrar_ranking_clientes span span').toggle(
    function () {

      $('.esconde_ranking_clientes').toggle();
      $(this).text('Mostrar TOP20');

    },
    function () {

      $('.esconde_ranking_clientes').toggle();
      $(this).text('Mostrar todos');

    }
  );

});
