$(document).ready(function() {

$(".pw_hide_show dt").hover(function(){ $(this).css('cursor', 'pointer').css('text-decoration', 'underline'); },function(){ $(this).css('cursor', 'auto').css('text-decoration', 'none'); });
$(".pw_hide_show dt").focus(function(){ $(this).css('cursor', 'pointer').css('text-decoration', 'underline'); },function(){ $(this).css('cursor', 'auto').css('text-decoration', 'none'); });
  $('.pw_hide_show dd').hide();
  $('.pw_hide_show dt').click(function() {$(this).next().slideToggle('slow');});
});

