$(function(){
	$('.tooltip').hide();
	$('.tooltip-activator').hover(
		function(){
			$('body').append('<div id="recently-description"></div>');
			$correction = 0;
			if ($(this).parent().children('h2').css('margin-bottom'))
				$correction = parseInt($(this).parent().children('h2').css('margin-bottom'));
			$top = $(this).offset().top - 1 - $correction;
			$left = $(this).offset().left + 324;
			$('#recently-description').css('top',$top).css('left',$left);
			$('#recently-description').append($(this).children('.tooltip').html());
			$(this).addClass('hovered');
		},
		function(){
			$('#recently-description').remove();
			$(this).removeClass('hovered');
		}
	);
});