/* When document is loaded */
$(document).ready(function() {
    $('table.results td:last-child').each(function() {
      $(this).addClass('last');
      gewicht = $(this).html();
      $(this).html('<abbr title="Gewicht '+gewicht+'" class="r'+gewicht+'">'+gewicht+'</abbr>');
    });
});

/* When images have been loaded as well */
$(window).load(function() {
  /* Insert jQuery */
});