$(document).ready(function(){
	$("dd").css({display: "none"});
	$("dl").hover(function(){
		$(this).find('dd:first').fadeIn("slow");
	}, function(){
		$(this).find('dd:first').css({display: "none"});
	});
});
