$(window).ready(function() {
  if( $('.splashContainer').length > 0) {
    if($(window).width() > $(window).height()) {
      $('.splashContainer').height($(window).height());
      $('.splashContainer').width($(window).width());
    }else {
      $('.splashContainer').width($(window).width());
      $('.splashContainer').height($(window).height());
    }
  }
  if($('.splashButton').length > 0) {
    $('.splashButton').css('margin-bottom', $(window).height()/5+ "px");
  }
});
