// JavaScript Document
$(document).ready(function(){
	$(".featured").mouseenter( function() {
		$(this).find(".f_text").animate({bottom:"-30px"}, 600, "swing");
	});
	$(".featured").mouseleave( function() {
		$(this).find(".f_text").animate({bottom:"0px"}, 300);
	});	
});
