$(function(){
  $("#banner-tagline, #banner-links").hide();
  $("#banner-tagline").delay(600).fadeIn(2000);
  $("#banner-links").delay(3000).fadeIn(1000);
  $('#about-wbso, #about-innovationbox').hover(
    function(){
    //$(this).children('.about-caption').toggleClass('about-caption-high')
      $(this).children('.about-caption').stop().animate({height: '127'})
    },
    function(){
      $(this).children('.about-caption').stop().animate({height: '42'})
    }
  );
  $('#tweets').monotweet({ twitterName:'venderion' , nrOfTweets:5 });
});

