$(document).ready(function () {
	var timeout;
	$().mousemove(function (e) {
		$("#hover").css({
			left: e.pageX - 290, 
			top: e.pageY - 66
		});
	});	
	$("area").hover(function(e) { 
		clearTimeout(timeout);
		var text = descriptions[this.id].split(" :: ");		
		$("#hover").html("<h3>" + text[0] + "</h3><p>" + text[1] + "</p>").show();
	}, function (e) {
		timeout = setTimeout(function () {
			$("#hover").hide();		
		}, 100);
	});
});