/* ----------------------------------------------------------------
   C O D E   T O   R U N   A T   I N I T I A L I Z A T I O N
---------------------------------------------------------------- */

$(function() {
  readjust();
  
  // Entry links
  $('p#title, div#splash_image').click(function() {
    // window.resizeTo(1325, 925);
    document.location = '/intertidal1';
  });
  
});

function readjust() {
  var height = $(window).height() < 1125 ? $(window).height() : 1125;
  $('div#container').height(height).centerInClient({ container: window, forceAbsolute: true });

  var height = $(window).height() < 925 ? $(window).height() : 925;
  $('div#content_container').height(height).centerInClient({ container: 'div#container', forceAbsolute: true });
  
  $('div#content').centerInClient({ container: 'div#content_container' });  
}
