var animateHeaderTitle = false;

$(document).ready(function(){
  // Set the side padding and height to match the viewport
  //setPadding();
  setHeight();
  
 
  // Fade in the content area (doesn't work in IE thanks to the PNG opacity bug)
  if(!$.browser.msie){
    $('#logo_easing').hide();
    $('#logo_easing').fadeIn({ duration: 3000 });
  }
});



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