$(document).ready(function() {
  $('ul.plant-list table, p.plant-description').addClass('hidden');
  $('ul.plant-list li > p > a.reveal').click(function(event) {
    $(this).parent().siblings('table, p.plant-description').toggleClass('hidden');

    if ($(this).text().match(/Show/)) {
      var new_text = $(this).text().replace(/Show/, "Hide");
    } else {
      var new_text = $(this).text().replace(/Hide/, "Show");
    }
    
    $(this).text(new_text);
    event.stopPropagation();
    return false;
  })
});