// JavaScript Document

$('.teaser').hover(function() {
	  // over

	$(this).children('img').stop().animate({
		top : '0'
	}, 500);

}, 

function() {
  // out	

	$(this).children('img').stop().animate({
		top : '-55px'
	}, 500);

});