$(document).ready(function(){

	$("dl#gallery dt").hover(function() {
	  $(this).next("dd").animate({opacity: "show"}, "fast");
	}, function() {
	  $(this).next("dd").animate({opacity: "hide"}, "fast");
	});

});
