jQuery(document).ready(function(){ jQuery(".navigation a").each(function(){ jQuery(this).hover( function(){ jQuery(this).stop().animate({textIndent: '50px'}); }, function(){ jQuery(this).stop().animate({textIndent: '35px'}); } ); }); jQuery(".text").focus(function(){jQuery(this).animate({backgroundColor:'#f2f2f2'})}); jQuery(".text").blur(function(){jQuery(this).animate({backgroundColor:'#ffffff'})}); });