	$(document).ready(function() {
 		$(".tooltips").hover(
			function() { $(this).contents("span:last-child").slideDown(300); },
			function() { $(this).contents("span:last-child").fadeOut(100);; }
		);
 
		$(".tooltips").mousemove(function(e) {
			var mousex = e.pageX + 10;
			var mousey = e.pageY + 5;
			$(this).contents("span:last-child").css({  top: mousey, left: mousex });
		});
 	});

