// JavaScript Document
$(function()
	{
		$('#showPersonalInfo').hover(function (e) { HoverOn($('#personalInfo'), e); }, function () { HoverOff($('#personalInfo')); });
		$('#showBusinessInfo').hover(function (e) { HoverOn($('#businessInfo'), e); }, function () { HoverOff($('#businessInfo')); });
		$('#showAdvertInfo').hover(function (e) { HoverOn($('#advertInfo'), e); }, function () { HoverOff($('#advertInfo')); });
	}
);

function HoverOn(thePanel, e)
{
	thePanel.css('position', 'absolute').css('left', e.pageX-300).css('top', (e.pageY - thePanel.height())).show();
}

function HoverOff(thePanel)
{
	$.idle(function() { thePanel.hide(); }, 15000);
}
