$(document).ready(function() {
  $.getJSON('/supporters/count_supporters_and_participants', function(json) {
    $('#supporters_count').html(json['supporters']);
    $('#participants_count').html(json['participants']);
  })
});
