$(document).ready(function(){
 
	$("#feature").hover(function() {
	$(this).next("#popup_text").stop(true, true).animate({opacity: "show", top: "-60"}, "slow");
	}, function() {
	$(this).next("#popup_text").animate({opacity: "hide", top: "-70"}, "fast");
	});
 
});