Index: faq.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/faq/faq.js,v
retrieving revision 1.1.2.8
diff -u -r1.1.2.8 faq.js
--- faq.js 2 Oct 2007 10:34:59 -0000 1.1.2.8
+++ faq.js 15 Jan 2008 11:00:10 -0000
@@ -2,16 +2,16 @@
   $(document).ready(function () {
     // hide/show answer to question
     $('div.faq_dd_hide_answer').hide();
-    $("div.faq_dt_hide_answer").click(function() {
-      $(this).next("div.faq_dd_hide_answer").toggle();
+    $('div.faq_dt_hide_answer').click(function() {
+      $(this).next('div.faq_dd_hide_answer').toggle();
       return false;
     });


     // hide/show q/a for a category
     $('div.faq_qa_hide').hide();
-    $(".faq_qa_header").click(function() {
-      $(this).next("div.faq_qa_hide").toggle();
+    $('div.faq_qa_header .faq_header').click(function() {
+      $(this).parent().next('div.faq_qa_hide').toggle();
       return false;
     });

