function Setup_QuestionAnswerCollapse_DL() {
	$("dl.questionanswer dd").hide();
	$("dl.questionanswer dt").click( function() {
		$(this).next("dd").toggle();
	});
}

$(document).ready(function(){ 
	// Setup_QuestionAnswerCollapse_DL();
});
