$(document).ready(function(){

  function rs() {
    $('#content.list').css('height', ($(window).height() - 36)+'px');
    $('#menu').css('width', $(document).width());
  }
  $(window).resize(rs);
  rs();

  // function resizeBg() {
  //    var theWindow        = $(window),
  //        $bg              = $("#bg"),
  //        aspectRatio      = $bg.width() / $bg.height();
  // 
  //         if ( (theWindow.width() / theWindow.height()) < aspectRatio ) {
  //             $bg
  //                 .removeClass()
  //                 .addClass('bgheight');
  //         } else {
  //             $bg
  //                 .removeClass()
  //                 .addClass('bgwidth');
  //         }
  // }
  // theWindow.resize(function() {
  //         resizeBg();
  // }).trigger("resize");  

});
