function intro()
{
  $('#intro').css('display', 'block');
  
  $('#intro_content').delay(750).animate({
    height: "200px"
  }, {
    duration: 450
  });
  
  $('#intro').delay(750).animate({
    top: '164px'
  }, {
    duration: 450, 
    complete: function() {
      setTimeout(moveItems, 100);
    }
  });
}

function moveItems()
{
  $('#intro_logo').animate({
    top: "96px",
    opacity: "toggle"
  }, 450);
  $('#intro_subtitle1').delay(750).animate({
    top: "139px",
    opacity: "toggle"
  }, 750);
  $('#intro_subtitle2').delay(1000).animate({
    top: "139px",
    opacity: "toggle"
  }, {
    duration: 750,
    complete: function() {
      setTimeout(end, 5000);
    }
  });
  $('#intro_subtitle3').delay(500).animate({
    top: "139px",
    opacity: "toggle"
  }, 750);
}

function end()
{
  $('#intro').delay(3000).animate({
    top: "260px"
  }, {
    duration: 450,
    complete: function() {
      $('#intro').css('display', 'none');
    }
  });

  $('#intro_content').animate({
    height: "0"
  }, 450);

  $('#intro_logo').animate({
    top: "-20px",
    opacity: "toggle"
  }, 450);

  $('#intro_subtitle1, #intro_subtitle2, #intro_subtitle3').animate({
    top: "23px",
    opacity: "toggle"
  }, 450);
}
