var t=1;

function teaser() {
	$("#teaser"+t).animate({top: 10},"slow").delay(3000).animate({top: 500},"slow");
	t++;
	if (t==4) t=1;
}

$(function() {
	teaser();	
	var x = window.setInterval("teaser()",1000*5);
	
})

