$(document).ready(function()
{
	$(".faq_question").click(function() {
		$(this).parent().next().slideToggle();
		return false;
	});
});
