// JavaScript Document

$(document).ready(function(){

	$("#bytmap a").append("<em></em>");
	
	$("#bytmap a").hover(function() {
		$(this).find("em").animate({opacity: "show", right: "0"}, "slow");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", right: "-5"}, "fast");
	});


});
