var nav = null;
$(document).ready(function () {
    nav = new Nav();
    nav.start();
    
    $('#container').height(document.documentElement.clientHeight);
    
    $(window).resize(function() {
      $('#container').height(document.body.clientHeight);
    }).trigger('resize');
});
