IDE Can not locate Libraries

I just installed the IDE and libraries. I Opened Blink, Uploaded it, and it worked fine.

When I opened a new sketch, the Morse example, the IDE takes the file SOS from

C:\Users\Jim\Documents\Arduino\libraries\Morse\examples\SOS and loads.

#include <Morse.h>

Morse morse(13);

void setup()
{
}

void loop()
{
  morse.dot(); morse.dot(); morse.dot();
  morse.dash(); morse.dash(); morse.dash();
  morse.dot(); morse.dot(); morse.dot();
  delay(3000);
}

When I Verify / Compile or Upload, I get the message...

C:\Users\jim\Documents\Arduino\libraries\Morse/Morse.h:10:22: error: WProgram.h: No such file or directory

In file included from SOS.pde:1:

The files Morse.h, Morse.cpp, and keywords.txt are in the folder C:\Users\jim\Documents\Arduino\libraries\Morse

Note the Forward Slash in the compiler error message.

Any assistance is appreciated.

The original morse library does not work with version 1 of the IDE and above.
Revised version of morse.h

/*
  Morse.h - Library for flashing Morse code.
  Created by David A. Mellis, November 2, 2007.
  Released into the public domain.
*/
#ifndef Morse_h
#define Morse_h

#include "Arduino.h"

class Morse
{
  public:
    Morse(int pin);
    void dot();
    void dash();
  private:
    int _pin;
};

#endif

Revised version of morse.cpp

/*
  Morse.cpp - Library for flashing Morse code.
  Created by David A. Mellis, November 2, 2007.
  Released into the public domain.
*/

#include "Arduino.h"
#include "Morse.h"

Morse::Morse(int pin)
{
  pinMode(pin, OUTPUT);
  _pin = pin;
}

void Morse::dot()
{
  digitalWrite(_pin, HIGH);
  delay(250);
  digitalWrite(_pin, LOW);
  delay(250);
}

void Morse::dash()
{
  digitalWrite(_pin, HIGH);
  delay(1000);
  digitalWrite(_pin, LOW);
  delay(250);
}