// JavaScript Document

$(function(){

	$(".tooltip a").hover(function() {

	    $(this).next("span").animate({opacity: "show", top: "-120"}, "slow");}, function() {

			$(this).next("span").animate({opacity: "hide", top: "-140"}, "fast");

	});

});



