jQuery(document).ready(function($) {
	$('dl.active_list').before( '<p>Click on the question to see the answer.</p>' );
	$('dl.active_list dt+dd').hide();
	$('dl.active_list dt').click( function() {
		var answer = $(this).next();
		answer.slideToggle('fast').css({backgroundColor:'#D0F2FF'});
		setTimeout( function() {
			answer.animate( {backgroundColor : 'transparent'}, 2000 );
			}, 2000 );
	});
});