jQuery(document).ready(function(){
	$("#persons li").hover(
		function(){
			var iconName = $(this).find("img").attr("src");
			$(this).find("span").attr({
				"style": 'display:inline'
			});
			$(this).find("span").animate({top: "-60"}, {queue:false, duration:0});
		}, 
		function(){
			var iconName = $(this).find("img").attr("src");
			$(this).find("span").animate({opacity: 0, top: "-50"}, {queue:false, duration:0}, "linear",
				function(){
					$(this).find("span").attr({"style": ''});			
				}
			);
		});
});
