$(document).ready(function() {

	// hide th DDs
	$('dl.dl-toggle dd').hide();

	// replace the text with a link in each dt
	$('dl.dl-toggle dt').each(function(index) {
		$(this).wrapInner('<a href="#"></a>');
	});

	$('dl.dl-toggle dt a').click(function(event) {
		$(this).parent().siblings('dd').toggle('fast');
		event.preventDefault();
	});

});

