$(document).ready(function(){

//boot up default code				
$('#start_teasers li').hover(
				function(){
						$(".teaser_title", this).stop().animate({top:'0px'},{queue:false,duration:560, easing: "easeinout"});
				}, function() {
					$(".teaser_title", this).stop().animate({top:'70px'},{queue:false,duration:260});
				});   
});