$(document).ready(function() {
  animateIn()
  
});

function animateIn() {
  setTimeout(function() {
    $('#intro nav').animate({
      top: '82px'
    }, '5000', 'easeOutQuint')
  }, 1000)
}
