$(document).ready(function(){
	if($('.faq_q_wrap').length != 0)
	{
		$('.faq_q_wrap').each(function(){
			$(this).next('.faq_answer').slideUp(600);
		});
	}

        $('.faq_q_wrap').click(function(){
   
	// First collapse the Fast Facts answer DIVs
	$('.faq_q_wrap').each(function(){

		if($(this).hasClass('faq_active'))
		{
			$(this).removeClass('faq_active');
		}
		$(this).next('.faq_answer').slideUp(600);
	});
	$(this).toggleClass('faq_active');
	$(this).next('.faq_answer').slideDown(600);


});

});



