jQuery(document).ready(function(){
	$("#faq-list > li > h3").click(function() {
		$(this).next().slideToggle(200);
	}).next().hide();
});