$(function() { var span_hover = false; $('div#rac').addClass('js'); var timer = null; $('p.info').hover( function() { $(this).children('span').stop().fadeIn(); }, function() { $(this).children('span').animate( { opacity: 1.0 }, 700, function() { $(this).fadeOut(); }); }); $('p.info span').hover( function() { $(this).stop().show(); }, function() { $(this).fadeOut(); }); });