


$(function() {
    $('.ff-ladder li').mouseenter(function() {
        if (!$(this).find('p').length)
        {
            var title = $(this).attr('title');
            $(this).attr('title', '');
            $(this).append("<p class='popup'>" + title + "</p>");
            $(this).find("p").fadeIn('fast');
        }
    });
    $('.ff-ladder li').mouseleave(function() {
        if ($(this).find('p').length)
        {
            var title = $(this).find('p').text();
            $(this).attr('title', title);
            $(this).find("p").fadeOut('fast', function () {
                $(this).remove();
            });
        }
    });
});