function faqClick(faq_q) {
	if(faq_q.parentNode.parentNode.getAttribute('class') == null)
	{
		faq_q.parentNode.parentNode.setAttribute('class', 'active');
		faq_q.parentNode.parentNode.setAttribute('className', 'active');
	}
	else
	{
		faq_q.parentNode.parentNode.removeAttribute('class');
		faq_q.parentNode.parentNode.removeAttribute('className');
	}

	return false;
};
