
// SET ALL COLLAPSIBLE CONTAINERS TO RESPOND TO BUTTON EVENTS
$('.collapsible-container-button').click(function(event) {
  var topParent = $(this).parent().parent();
  $(topParent).find('.collapsible-container-hide-show').toggle(1000);
  var checkAria = $(this).attr('aria-expanded');
  if (checkAria == 'false') {
    $(this).attr('aria-expanded', 'true');
    $(topParent).find('.collapsible-indicator').removeClass('fa-angle-down').addClass('fa-angle-up');
  } else {
    $(this).attr('aria-expanded', 'false');
    $(topParent).find('.collapsible-indicator').removeClass('fa-angle-up').addClass('fa-angle-down');
  }
});

// SET ALL TOPIC CONTAINERS TO RESPOND TO BUTTON EVENTS
$('.topic-expanding-button').click(function(event) {
  var expandingID = "." + $(this).attr('data-expandingid');
  console.log("expanding: "+expandingID);
  $(expandingID).toggle(0);
  var checkAria = $(this).attr('aria-expanded');
  if (checkAria == 'false') {
    $(this).attr('aria-expanded', 'true');
    $(this).find('.collapsible-indicator').removeClass('fa-angle-down').addClass('fa-angle-up');
  } else {
    $(this).attr('aria-expanded', 'false');
    $(this).find('.collapsible-indicator').removeClass('fa-angle-up').addClass('fa-angle-down');
  }
});
