jQuery(document).ready(function($) {
  $('.comment-votes a').click(function () {
    $(this).find('span.count').before(load_small_white_mocca);
    $(this).find('span.count').hide().load(this.href, function() {
      $(this).show();
      $(this).prev('img').remove();
    });
    return false;
  });
});

