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

