$(document).ready(function() {
 // hides the code as soon as the DOM is ready
 // (a little sooner than page load)
  $('#thecode').hide();
 // shows the code on clicking the noted link
  $('a#getthecode').click(function() {
 $('#thecode').slideToggle('slow');
 return false;
  });
});