function teaserEffects()
{
  $('#teaserWrapper .item').mouseover(function(){
    $(this).find('.information').stop().animate({top:'0px'},110);
  }).mouseleave(function(){
    $(this).find('.information').stop().animate({top:'208px'},80);
  });
}

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

