if (isBig){
  Modernizr.load([
    '//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js',
    '/_/lib/bb_footer_popups.js',
    '/_/full.js',
    '//platform.twitter.com/widgets.js'
  ]);
}

if (!isBig){
  Modernizr.load([
    {
      both: '//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js',
      complete: function(){
        $(document).ready(function(){
        });
      }
    },
    '//platform.twitter.com/widgets.js'
  ]);
}

/* Load on both for iphone and ipad */
if (typeof addEventListener == 'function'){
  (function (b) {
    var orientationChange = function () {
      if (window.orientation != 0) {
        b.className += ' landscape';
      } else {
        b.className = b.className.replace(/ landscape/, '');
      }
    }();

    window.addEventListener('orientationchange', orientationChange);
  })(document.documentElement);
}

