// Frontpage navigation map highlights

$(function() {
	$('.map').maphilight();
});

// Frontpage navigation map popups

	$(function() {
		$("map > area").tooltip({ 
			bodyHandler: function() {
				return $($(this).attr("id")).html();
			},
			delay: 400,
			positionLeft: true, 
			showURL: false,
			fixPNG: false,
			extraClass: "pretty",
			top: -100,
			left: -3
		});
		$("#block").click($.tooltip.block);
	});

// Colour the scoll bar on the front page

$(function() {
	$('#dynamic-feed-data').jScrollPane({scrollbarWidth:15, scrollbarMargin:5, showArrows:false});
});