function theStartpage()
{
  $('div#startPageTeaserWrapper .linkOne .icon img').delay(0).animate({width:0}, "fast").animate({width:31}, "slow");
  $('div#startPageTeaserWrapper .linkTwo .icon img').delay(200).animate({width:0}, "fast").animate({width:31}, "slow");
  $('div#startPageTeaserWrapper .linkThree .icon img').delay(400).animate({width:0}, "fast").animate({width:31}, "slow");
  $('div#startPageTeaserWrapper .linkFour .icon img').delay(600).animate({width:0}, "fast").animate({width:31}, "slow");
  
  $('#startPageTeaserWrapper a').hover(function() {
    $(this).find('.readMore').stop().animate({bottom:0}, "fast");
    $(this).stop().animate({bottom:5}, "fast");
  },function() {
    $(this).find('.readMore').stop().delay(200).animate({bottom:-20}, "slow");
    $(this).stop().delay(200).animate({bottom:0}, "fast");
  }); 
};


$(document).ready(function()
{    
  //Load the slideshow
  theStartpage();
});
