// JavaScript Document

$(document).ready(function() {
 		$(".tooltips").hover(
			function() { $(this).contents("span:last-child").css({ display: "block" }); },
			function() { $(this).contents("span:last-child").css({ display: "none" }); }
		);

		
 	});
