$(document).ready(function(){		
		$("dd.faq_catg_answers:not(#selected)").hide();
		$("dt.faq_catg_questions a").click(function(){
        	$("dd.faq_catg_answers:visible").slideUp("slow");
        	$(this).parent().next().slideDown("slow");
       		return false;
    	});
});
