$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
  initLetters();
  $("#A").click();
});

  function initLetters()
  {
    $(".community_letter").click(
      function(){
        $.ajax({
          url:route_community_users,
          data:{letter:$(this).attr("rel")},
          error:function(){alert('error : js/espCommunityList.js::initLetters()'); },
          success:function(data){    $('#community_container').html(data);        }
        });
        return false;
      }
    )
  }

