$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('#slickbox').hide();
  $('#login_button').show();
 // shows and hides and toggles the slickbox on click  
  $('#slick-toggle').click(function() {
    $('#slickbox').toggle("slow");
	$('#login_button').hide();
    return false;
  });
});