$(document).ready(function(){
  //FAQ show/hide functionality

  // hide all answers
  $('div.answer').hide();
  //show all answers of this parent
  $('.show-all').click(function(){
    $(this).parent().parent().parent(".show-hide-section").find(".answer").show();
    return false;
    });
  // hide all answers of this parent
  $('.hide-all').click(function(){
    $(this).parent().parent().parent(".show-hide-section").find(".answer").hide();
    return false;
    });
  // toggle this question's answer
  $('.question').click(function(){
    $(this).next().toggle();
    return false;
    });


//END
});
