$(document).ready(setupFaq);

function setupFaq() {
   $('.question a').click(function () {

      //onclick, slidetoggle the answer, and swap name + bullet style.
      $(this).parent().parent().next().slideToggle('',function () {
         $(this).prev().children().eq(0).each(function () {
            var _rel = this.getAttribute('rel');
            var _num = this.innerHTML;

            $(this).html(_rel).attr('rel', _num);
            $(this).parent().toggleClass('question_active');
         })
         //reapply IE7 layout fix
         fixIE7();
      });

      return false;
   })
}
