jQuery(document).ready(function(){ // Headers hints jQuery('#header a:not(#logo)').append(''); jQuery('#header a:not(#logo)').hover(function(){ var title = jQuery(this).attr('title'); jQuery(this).find('span').html(title); jQuery(this).find('span').css('display', 'block').animate({opacity:1}); },function(){ jQuery(this).find('span').animate({opacity:0},'fast').css('display', 'none'); }); });