
$(function () {

  $(".togbn").click(function (e) {
    var button_id = "#" + e.target.id;
    var span_id = button_id.replace("sh", "q");
    var hiding = $(span_id).css("display") === "none";
    if (hiding) {
      $(button_id).text("Hide FAQ");
      $(span_id).show();
    } else {
      $(button_id).text("Show FAQ");
      $(span_id).hide();
    }
  });

});