$(document).ready(function(){

	$('.box a').hover(function(){
		$(this).children().stop().animate({top:'275px'},{queue:false,duration:400});
	}, function() {
		$(this).children().stop().animate({top:'440px'},{queue:false,duration:1000});
	});
});

