jQuery(document).ready( function( $){
    
  $("#clinic_service h4").hover(
      function(){
          $(this).css( 'color', '#660000');
      },
      function(){
          $(this).css( 'color', '#0066cc');
      }
  );
  
  
});