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