// JavaScript Document
$(document).ready(function(){

	$(".n2 a").append("<em></em>");
	
	$(".n2 a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-35"}, "slow");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-65"}, "fast");
	});


});
