var tip;
$(document).ready(function() {
	if (!$('body').hasClass('loggedin'))
	{
		$('ul.performance li a, ul.credit li a').each(function() {
			if ($(this).attr('title'))
			{
				$(this).hover(function() {
					tip = $(this).attr('title');
					$('#tooltip').css('top', $(this).position().top + 139);
					$('#tooltip').html('<img src="images/tooltip_arrow.gif" alt="" /><div class="tip">' + tip + '</div>');
					$('#tooltip').show();
					$(this).attr('title', '');
				}, function() {
					$('#tooltip').css('top', -999);
					$('#tooltip').hide();
					$(this).attr('title', tip);
				});
			}
		});
	}
});