$(document).ready(function(){
  setHeight();
  
  if(!$.browser.msie){
    $('#splash-body').hide();
    $('#splash-body').fadeIn({ duration: 2000 });
  }
});

$(window).resize(function(){
  setHeight();
});

function setPadding(){
  var padding = (($(window).width() - 1040) / 2) + 2;
  $('#left .top, #left .bottom, #right .top, #right .bottom').each(function(){
    $(this).width(padding);
  });
}

function setHeight(){
  var height = $(window).height();
  if (height > 500) {
    $('#container').height(height);
  }
}
