$(document).ready(function(){
				$(".tooltipped").hover(function() {
						$(this).children(".tooltip").fadeIn(400);
					}, function() {
						$(this).children(".tooltip").fadeOut(500);
					});	
});
	
	
