$(document).ready(function(){
 
	$(".napis-popup a").hover(function() {
	$(this).next("span").stop(true, true).animate({opacity: "show", bottom: "-0"}, "slow");
	}, function() {
	$(this).next("span").animate({opacity: "hide", bottom: "-0"}, "fast");
	});
 
});
