    //toggle the next dd element for each dt element in the #faq definition list
    
    $(document).ready(function() {
        $('#faq').find('dd').hide().end().find('dt').click(function() {
					 var answer = $(this).next("dd");
					 if (answer.is(':visible')) {
							 answer.slideUp();
					 } else {
							 answer.slideDown();
					 }
			 });
             
             //ope all dd elements
             $('#showAll').click(function() {
					 
                     $('#faq dd').slideDown();
			 });
             
             //close all dd elements
             $('#hideAll').click(function() {
					 
                     $('#faq dd').slideUp();
			 });
                
    });