$(document).ready(function() {
  $('.status').prepend("<div class='score_this'>&nbsp;(<a href='#'>Bewerten</a>)</div>");
  $('.score_this').click(function(){
    $(this).slideUp();
    return false;
  });

  $('.score a').click(function() {
    $(this).parent().parent().parent().addClass('scored');
    $.get($(this).attr("href"), {}, function(data){
      $('.scored').fadeOut("normal", function() {
        $(this).html(data);
        $(this).fadeIn();
        $(this).removeClass('scored');
      });
    });
    return false;
  });
});
