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