function initFaq()
{
	/*
	* TOPICS
	*/
	
	// Each topic-toggle anchor...
	$("div#topics ul li a").each(function(){
		// Remove page-based anchors (fallback scrolling)
		// $(this).attr("href","#");
		// Click listener
		$(this).click(function(){
			// Hide the intro text
			$("div#questions p#intro").css("display","none");
			// Hide all other topics
			$("div#questions dl").each(function(){
				$(this).css("display","none");
			});
			// Show this topic
			$("div#questions dl#topic_"+$(this).attr("id")).css("display","block");
			// return false;
			return true;
		});
	});
	// Show intro text
	$("div#questions p#intro").css("display","block");
	/*
	* QUESTIONS
	*/
	// Click listeners
	$('div#questions dl dt').click(function(){
		$(this).next('dd').slideToggle('fast').siblings('dd:visible').slideUp('fast');
		return false;
	});
}
