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

