$(document).ready(function() {
		var hover_in_easing="easeOutExpo";
		var hover_out_easing="easeOutBounce";
		$(".subtext").show();
		$(this).find('.info_container').mouseover(function() {
			$(this).find('.subtext').stop().animate({top:0},{duration: 400, easing: hover_in_easing});}),
	$(this).find('.info_container').mouseout(function() { $(this).find('.subtext').stop().animate({top:155},{duration: 500, easing: hover_out_easing});})
});

