$(document).ready(function() {

  $(".links-full_story_toc a").click(
    function() {
      // hide all faq divs
      $(".faq").hide();
      // unset active class for all faq links
      $(".links-full_story_toc a").removeClass('active');
      // grab the class of the link clicked and show corresponding
      // div with matching class
      $('div.'+this.className).fadeIn("slow");
      // set linked clicked class to active
      $(this).addClass('active');
      return false;
    });
});
