$(document).ready(function() {
	$('dd').hide();

	$('dt span').hover(function() {
		$(this).css('cursor', 'pointer');
	}, function() {
		$(this).css('cursor', 'auto');
	});

	$('dt').toggle(function() {
		$(this).next().slideDown(50);
	}, function() {
		$(this).next().slideUp(50);
	});
});
