Advertisement
Guest User

Untitled

a guest
Mar 26th, 2010
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $( document ).ready( function() {
  2.  
  3.   $( 'ul.navigation li a' ).hover( function() {
  4.       $( this )
  5.         .stop()
  6.         .animate({
  7.           'background-color' : '#369',
  8.           'padding' : '6px 12px'
  9.         }, 150 );
  10.     }, function() {
  11.       $( this )
  12.         .stop()
  13.         .animate({
  14.           'background-color' : '#600',
  15.           'padding' : '0px 12px'
  16.         }, 150 );
  17.     });
  18.  
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement