jQuery(document).ready(function($){
	$('.faqs dt').click(function(){
		$(this).next().slideToggle();
	});
});
