$j = jQuery.noConflict();

$j('#seal dt').mouseover(function() {
	$j(this).next().stop(true,true).fadeIn('fast');
});

$j('#seal dt').mouseout(function() {
	$j(this).next().stop(true,true).fadeOut('fast');
});


