jQuery(document).ready(function($) {
 
  if ($.browser.msie) $('body').addClass('ie');
 
  if (!$.browser.msie || document.compatMode == 'CSS1Compat') return;
 
  (function r() {
    $('.backgrounds .background.bottom-left, .backgrounds .background.bottom-right').height($(document).height());
    setTimeout(r, 500);
  })();

  $('#dashboard .middle').width($('#dashboard').width()-830);
});

