$(document).ready(function(){

    $(".menu2 a").append("<em></em>");
    
    $(".menu2 a").hover(function() {
        $(this).find("em").stop(true, true).animate({opacity: "show", top: "-65"}, "slow");
        var hoverText = $(this).attr("atitle");
        $(this).find("em").text(hoverText);
    }, function() {
        $(this).find("em").stop(true, true).animate({opacity: "hide", top: "-75"}, "fast");
    });
});

