$(document).ready(function() {
  $(".issues article .section .body").parent().click(function () {
    $(this).toggleClass("open");
  });
});


