function controlFocusBox() {
	var hint = $('#mr-hint').html();
	if (null != hint) {
		$('div#info-bubble .content h1').html($('#manage-button a').html());
		$('div#info-bubble .content p').html($('#mr-hint').html());
		$('div#info-bubble').css({
			width:'200px',
			left:$('#manage-button').offset().left+164,
			top:$('#manage-button').offset().top-6
		}).show();
	}
}
function controlBlurBox() {
	$('div#info-bubble').hide().css({left:0,top:0});
	$('div#info-bubble .content h1, div#info-bubble .content p').html('');
}
$(document).ready(function() {
	$('#manage-button').hover(controlFocusBox,controlBlurBox);
});

