$("#btn2").toggle(
      function () {
     $("#login-box").animate( { height:"50px" }, { queue:false, duration:1500 } )
     .animate( { padding:"15px" }, 1500 )
      },
      function () {
      $("#login-box").animate( { height:"0px" }, { queue:false, duration:1500 } )
     .animate( { padding:"0px" }, 1500 )
      }
    );
