$(document).ready(function()
   {
      $('html').css('overflow', 'hidden');
      $(window).resize(checkResize);
      checkResize();
   });

function checkResize()
{            
   if(window.innerWidth < 989 || window.innerHeight < 595)
   {
      if(window.innerWidth < 989)
      {
         $('#content').css('width', '989px');
      }
      else
      {
         $('#content').css('width', 'auto');
      }

      if (window.innerHeight < 595)
      {
         $('#content').css('height', '595px');
      }
      else
      {
         $('#content').css('height', 'auto');
      }

      $('#content').css('overflow', 'hidden');
      $('html').css('overflow', 'auto');
   }
   else
   {
      $('#content').css('width', 'auto');
      $('#content').css('height', 'auto');
      $('html').css('overflow', 'hidden');
   }
}
