$(function(){
	$('#content dd').hide();
	$('dt').css({ cursor: 'pointer'}).toggle(
		function(e){
			$(this).next().show('fast');
		},
		function(e){
			$(this).next().hide('fast');
		}
	)
})