$(function() {
	$tooltip = $('.tooltip');
	
	$tooltip.hide();
	
	$('.pod').hover(function() {
		$('.tooltip', this).fadeIn(300);
	}, 
	function() {
		$('.tooltip', this).hide().clearQueue;
	});
});
