$('#menu > li').hover( function() { // over var $this = $(this); $('a', $this).addClass('hover'); $('span', $this).stop().animate({ 'top': '40px' }, 300).css({ 'zIndex': '10' }); }, function() { // out var $this = $(this); $('a', $this).removeClass('hover'); $('span', $this).stop().animate({ 'top': '-17px' }, 800).css({ 'zIndex': '-1' }); } );