$(document).ready(setupFaq);

function setupFaq() {
   $('.question a').click(function () {

      //onclick, slidetoggle the answer, and swap name + bullet style.
      $(this).parent().parent().next().slideToggle('',function () {
      });

      return false;
   })
}
