jQuery(function() {
	var num = 0;
	var questions = "#faq_list li";

	if (jQuery(questions).length > 0) {
		jQuery("#key_faq").after('<ul id="faq_toc"></ul>');

		jQuery(questions).each(function() {
			var id = 'faq_question_' + num;
			var title = jQuery(this).find('strong:first').text();
			if (title != '') {
				jQuery(this).attr("id", id);
				jQuery("#faq_toc").append('<li><a href="#' + id + '" class="scroll">' + title + '</a></li>');
				num ++;
				jQuery(this).append ('<br /><a href="#key_faq" class="scroll"><small>Top</small></a>');
			}
		});
	};
});

