/*!
 * jQuery core script
 */
 
var ld_span = '.link_description';
$(document).ready(function() {
    $('#title h1:first').each(function() {
        var header = this;
        $(header).find(ld_span).hide();
        $(this).find('a img').each(function() {
            $(this).hover(function() {
                if ($(this).attr('alt')) {
                    $(header).find(ld_span).text($(this).attr('alt'));
                    $(header).find(ld_span).fadeIn(250);
                }
            }, function() {
                $(header).find(ld_span).hide();
                $(header).find(ld_span).text('');
            });
        });
    });
});
