Here's my code so far:
$('.faq dd').hide();
$('.faq dt').click(function(){
$(this).next().slideToggle('normal');
});
I would like the DT to include an "active" class whenever someone clicks on it and then an "inactive" class whenever someone clicks on it again.
How is that possible?