//below is the javascript for the FAQ show/hide
$(document).ready(function(){
	$(".FAQ dd").css("display", "none");
	$(".FAQ").addClass("js_enabled");
	$(".FAQ dt").click().toggle(function() {
		$(this).next().show("slow");
	}, function() {
		$(this).next().hide("slow");
	});
});