$(document).ready(function() {
  float_interval = setInterval('float_bonus()', 50);

  $("li:first-child").addClass("first");
  $("li:last-child").addClass("last");
  $("table.level thead th:first-child")
    .css({"color": "#fff", "background-color": "#0d4870"});
});

this.float_bonus = function() {
  if ($.browser.msie) {
    $("#bonusGr").css({"top": 410 + document.documentElement.scrollTop + "px"});
  }
  else $("#bonusGr").css({"top": 410 + window.pageYOffset + "px"});

};

