jQuery(document).ready(function(){
	jQuery('.faqs h3').click(function() {
		$(this).next().toggle('slow');
	}).next().hide();
});
