$(document).ready(function(){
  $(".vote-block.file .stars a").click(function(e){
    e.preventDefault();
    var url = $(this).attr('href')+'/ajax?jsoncallback=?';
    $.getJSON(url,
        {},
	function(json) {
	  $("#vote-" + json.fid + ' .votes').html(json.votes);
	  $('#vote-' + json.fid + ' .stars a').each(function(i) {
	    if(i<Math.round(json.stars)) {
	      $(this).attr('class','red');
            } else {
	      $(this).attr('class','gray');
	    }
          });
    });
  });
});
