//////////////////// tooltips menu ////////////////////////////////////////////////////////////////////////////
$(document).ready(function(){

	$("#menu a").append("<em></em>");
	
	$("#menu a").hover(function() {
		$(this).find("em").animate({opacity: "show", left: "145"}, "slow");
		var hoverText = $(this).attr("coords");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", left: "110"}, "fast");
	});
	
});
