$(function(){

//$('dd').hide();
$('dl')
  .mouseenter(function(){
    $('dd',this).fadeIn();
  })
  .mouseleave(function(){
    $('dd',this).fadeOut();
  });

});

$("dt a").hover(function () {
      $(this).css({'background-position' : 'center -61px'});
    }, function () {
      $(this).css({'background-position' : 'center 0'});
    });


