
$(document).ready(function(){ $('div#links a').each(function (){ $(this).bind( "mouseover", function(){$(this).animate({backgroundPosition: '(0 0)',lineHeight:"25px"},200);} ); $(this).bind( "mouseout", function(){$(this).stop(); $(this).animate({backgroundPosition: '(0 35px)',lineHeight:"40px"},200); } ); }); });