// JavaScript Document
$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#form').hide();
 // shows the slickbox on clicking the noted link
  $('a#show-form').click(function() {
 $('#form').show('slow');
 return false;
  });
 // hides the slickbox on clicking the noted link
  $('a#form-hide').click(function() {
 $('#form').hide('fast');
 return false;
  });
 // toggles the slickbox on clicking the noted link
  $('a#form-toggle').click(function() {
 $('#form').toggle(400);
 return false;
  });
});