jQuery(document).ready( function( $){
  
  // Accordion
  $(".medical_list").accordion({
      header: "dt",
      autoHeight: false
  });
  
  $(".medical_list dt").hover(
      function(){
          $(this).css( 'color', '#660000').css( 'cursor', 'pointer');
      },
      function(){
          $(this).css( 'color', '#0066cc').css( 'cursor', 'default');
      }
  );
  
});