
   // When the page is ready
   $(document).ready(function(){
     $("#page #pass_login").hide();
     $("div.ab_cr a").click(function(event){
       $(this).parents(".top").prev("#pass_login").slideToggle("fast");
       
       // Stop the link click from doing its normal thing
       return false;
     });
   });

