function karma(url, event) {
      $.getJSON(url, {'id': event.target.id},  function(response) {
          $('#up-' + response.id).attr('src', '/images/gray_up.png');
          $('#down-' + response.id).attr('src', '/images/gray_down.png');
      });
};
