  $(document).ready(function() {
  // Hide the "view" div.
  $('div.duchamp_hiddentext').show();
  // Watch for clicks on the "slide" link.
  $('div.duchamp_showhide').click(function() {
  // When clicked, toggle the "view" div.
  $('div.duchamp_hiddentext').slideToggle(500);
  return false;
});
});

