$(document).ready(function() {
	// APPEND HELPER TEXT AFTER FIRST H1
	$("h1:first").after("<p><strong>Click on a question to show the answer. Click it again to hide the answer.</strong></p>");

	// HIDE ALL THE ANSWERS
	$(".faqnav li span.answer").hide();	

	// MOUSEOVER POINTER TO INDICATE CLICKABLE	
	$(".faqnav li").mouseover(function() {
		$(this).css("cursor","pointer");
	}).click(function() {
		// AND TOGGLE VISIBILITY OF ANSWERS
		$("span.answer",this).slideToggle("fast");
	});
});
