$(document).ready(function(){
  // Resize window
  $(window).resize(function() {
    var height = $(window).height();
    var width = $(window).width();

    $('.resize-w').css('width', width-250);
    $('#od-content').css('height', height);
    $('#left-nav').css('height', height);
    $('#right-site').css('height', height);
    $('.repos-b').css('bottom', '0px');

    if(width>1600)
    {
      $('.resize-w').css('font-size', '16px');
    }
    if(width<1600)
    {
      $('.resize-w').css('font-size', '13px');
    }
  });

  $('#od-content').scroll(function() {
    $('.repos-b').css('bottom', '0px');
  });

  var height = $(window).height();
  var width = $(window).width();

  if(width>1600)
  {
    $('.resize-w').css('font-size', '16px');
  }
  if(width<1600)
  {
    $('.resize-w').css('font-size', '13px');
  }

  $('.resize-w').css('width', width-250);
  $('#od-content').css('height', height);
  $('#left-nav').css('height', height);
  $('#right-site').css('height', height);

  $('.repos-b').css('bottom', '0px');
});

