$(document).ready(function() {
 
	$("#map a").hover(function() {
		$(this).next("em").stop(true, true).animate({ opacity: "show" }, "fast");
			}, function() {
		$(this).next("em").animate({ opacity: "hide" }, "slow");
	});
 
});

$(document).ready(function() {
						   
	$("a.marker").click(function(){
		var country = $(this).attr("name");
		$("div.info").animate({ opacity: "hide" }, "fast")
			.animate({opacity: 0}, 200);
		$("#"+country).animate({ opacity: "show" }, "fast")
			.animate({opacity: .9}, "fast");					 							 
	});
	
});

$(document).ready(function() {
						   
	$("a.close").click(function(){
		$("div.info").animate({ opacity: "hide" }, "fast");
	});
	
});	