   $(document).ready(function() {
          $('#topLinks').hover(function(event) {
              $(this)
                  .stop().animate(
                      { top: -3 }, {
                          duration: 'fast',
                          easing: 'easeOutQuad'
                      })
                  .animate(
                      { top: 6 }, {
                          duration: '200',
                          easing: 'easeOutBounce'
                      });
          });
      });


