$(document).ready(function(){
	$('p.faq_answer').hide();
	$('h2.faq_question').toggle(
		function(){
			$(this).next('.faq_answer').slideDown();
		},
		function(){
			$(this).next('.faq_answer').slideUp();
		}
	);
}
)		
