$(document).ready(function(){

	// Show or hide the Blue Lines panel in homepages.

	$("div.sub-blue-box p.link a").click(function(){
		$("div.sub-blue-box-full").show("normal");
		return false;
	});
	
	$("div.sub-blue-box-full p.close-link a").click(function(){
		$("div.sub-blue-box-full").hide("normal");
		return false;
	});
	
	// Highlights map area in footer when hovering on country name.
	// We used the title attribute as some countries have spaces or invalid characters for the image filename.
	// Please note capitalization of the images!

	$("div.map-navigation li a").hover(function(){
		var countryName = $(this).attr("title");
		$("div.map-navigation #small-map").attr("src", "/images/maps/small/" + countryName + ".gif");
	}, function(){
		$("div.map-navigation #small-map").attr("src","/images/maps/small/africa-map-small.gif");
	});

});