Did I miss something?

Did I miss something?

Okay, I've got to believe that there's some small error in here that I'm missing, because I cannot get this to work.

Any ideas?

<script type="text/javascript">
   
      $(document).ready(function(){
      
         $("client_login").hover(function(){
            $(this).animate({
               opacity: .9,
               top: "-1"},
               "normal");
         }, function(){
            $(this).animate({
               opacity: .4,
               top: "-28"},
               "normal");
         });
      
      });
   
   </script>