Like jjnguy I found [Wikipedia](http://en.wikipedia.org/wiki/NP_%28complexity%29) a good source of information, however there is a lot of information so I have provided a summary here.

What is NP?
-----------
NP is the set of all decision problems (question with yes-or-no answer) for which the 'yes'-answers can be **verified** in polynomial time (O(n^k) where n is the problem size, and k is a constant) by a [deterministic Turing machine](http://en.wikipedia.org/wiki/Deterministic_Turing_machine). Polynomial time is sometimes used as the definition of *fast* or *quickly*. 

What is P?
----------
P is the set of all decision problems which can be **solved** in polynomial time by a deterministic Turing machine. Since it can solve in polynomial time, it can also be verified in polynomial time. Therefore P is a subset of NP.

What is NP-Complete?
----------
A problem x that is in NP is also in NP-Complete if and only if every other problem in NP can be quickly (ie. in polynomial time) transformed into x. In other words:

 1. x is in NP, and
 2. Every problem in NP is reducible to x

So what makes NP-Complete so interesting is that if any one of the NP-Complete problems was to be solved quickly then all NP problems can be solved quickly. Also see [What’s “P=NP?”, and why is it such a famous question?](http://stackoverflow.com/questions/111307/whats-pnp-and-why-is-it-such-a-famous-question)