$(function() {
	$("#featured .box").hover(function(){
		$(this).find(".box-text").stop().animate({
			top:0
		}, 150);
		}, function(){
		$(this).find(".box-text").stop().animate({
			top:140
		}, 150);
	});
});