$(document).ready(function(){
	$(".icon").hover(function () {
	$(".tooltip", this).fadeIn("fast");
	},
	function () {
	$(".tooltip", this).fadeOut("fast");
	});
 });