
$( function() {
  
  var content = $('#content');
  var handle = $("<a href=\"#content\" id=\"handle\">Hide Information</a>");
  
  content.after(handle);
  
  handle.click( function() {
    $('#content').slideToggle('medium', function () {
      if(content.css('visibility') == 'visible') {
        handle.text("Show Information");
      } else {
        handle.text("Hide Information");
      }
      return false;
    });
    return false;
  });
  
});
