$(document).ready(function()
{
	$(".datapoint p").each(function()
	{
		$(this).html($(this).text().replace(/ /g,"&nbsp;"));
	});
	
	$(".datapoint").hover(
	function()
	{
		$(this).css("z-index","9");
		$(this).css("background-color","#006633");
		$(this).children("p").show();
	},
	function()
	{
		$(this).css("z-index","1");
		$(this).css("background-color","#283f6e");
		$(this).children("p").hide();
	});
});