/**
 * Javascript functions for /faq.php
 */
$(document).ready(function() {
				
	/**
	 * Show / hide answer for questions 
	 */
	 
	 $(".answer").hide();	 	 
	 $(".question").toggle(
		  function () {
			  $(this).find("a").addClass("activeQuestion");
			  $(this).siblings().show("fast");
		  },
	      function () {
  			  $(this).find("a").removeClass("activeQuestion")
			  $(this).siblings().hide("fast");
	      }
	 );	 
});