$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('#client_login').hide();
  $('#divslide-slidetoggle').click(function() {
    $('#client_login').slideToggle('slow');
    return false;
  });
});