jQuery(function() {
  // Onready toggle all faqs
  jQuery("dt.faqtoggle").each(function() {
    var current = $(this);
    var toggler = $('#dd_' + current.attr("id").split('_')[2]);
    toggler.hide();
    
    current.add(toggler).click(function() {
      toggler.toggle();
    });
  });
});


