jQuery(function($) {
	var tooltip = $('<div class="tooltip" />').css({ 'position': 'absolute', 'z-index': 50, 'width': '25%' }).hide().appendTo(document.body);;
	$('.help.hidden').each(function() {
		var help = $(this).html();
		$('<small>(<a href="#">?</a>)</small>').replaceAll(this).find('a').click(function(e) {
			tooltip.html(help).css({
				'top': '' + (e.pageY - 5) + 'px',
				'left': '' + (e.pageX - 5) + 'px'
			}).show();
			$(document).one('click', function() { tooltip.hide(); });
			return false;
		});
	});
});
