$(function() {
  // Index, Projects
  if ($('.full-size').length > 0) {
    $(window).resize(function() {
      $('.full-size').css({
        height : $(window).height() + 'px'
      });

      if ('Touch' in window) {
        $('#bottom-nav, #info-nav').css({
          'position' : 'absolute',
          'top'      : (window.innerHeight - 35) + 'px'
        });
      }
    }).trigger('resize');

    window.onorientationchange = function() {
      $(window).trigger('resize');
    };
  }
});

