/**** FAQ ****/

function toggleFaqBox(questionId,questionTitle,currentPage)
{
	var sFaqBoxName = 'faq-answer-' + questionId;

	var oFaqBox = getElement( sFaqBoxName );

	// if box is hidden then send a request to the server and count the number this question has been read
	if( oFaqBox.style.display != 'block' )
	{
		displayElement( sFaqBoxName );

		// This is a way to Track which questions get read the most
		if( typeof _gaq != 'undefined' )
		{
			_gaq.push(['_trackEvent', 'Frequently Asked Questions',currentPage,questionTitle]);
		}
	}
	// We are closing the box
	else
	{
		hideElement( sFaqBoxName );

		if( typeof _gaq != 'undefined' )
		{
			_gaq.push(['_trackEvent', 'Frequently Asked Questions',currentPage,questionTitle]);
		}
	}

	return false;
}
