// This script handles formatting FAQ lists where 
// the questions are collapsed until clicked
// It should be included where needed, but only once per page!

	// Attach our handler for document ready.	
	jQuery.noConflict();	
	jQuery(document).ready(function(){
	
		jQuery(".faqQs .faq_a").hide();
		jQuery(".faqQs .faq_q").click(function(){
			jQuery(this).next(".faq_a:visible").hide('fast');
			jQuery(this).next(".faq_a:hidden").show('fast');
		});
	
	})
