Feeling the need to weigh in on this one.
In order to protect myself from rate-downs, I should first say that I do understand the need for CSS Sprites, and use them myself.
The problem is that pro-performance articles always seem to present the Why (performance), often without the How, and never seem to go into the Why Not.
CSS Sprites do have a positive impact on performance, for reasons that other posters here have gone into in detail. However, they do have a downside: maintainability; it's often much more difficult to make changes to a highly optimised sprite map and background-position-riddled stylesheet than it is to simply switch one image file for another, add an image, remove an image etc. If you've manually optimised your sprite map, then the client tells you that an image right in the middle needs to be 20px bigger... wow that's a headache.
I think it's a minority view, but I firmly believe that in the vast vast vast majority of cases, maintainability concerns should outweigh performance concerns. There are a few people who at least partly agree with me.
Do take that into account before deciding to use them.
That said, the performance impact is massive - particularly when you're using rollovers and want to avoid that hideous effect you get when you mouseover an image then the browser goes away to request the rollover image (and you want to avoid that also hideous deamweaver image preload script). I think in most cases, it's probably appropriate to refactor your images into a sprite map once your requirements have settled down - particularly if your site is going to be under heavy traffic (and certainly the big examples people have been pulling out - facebook, amazon, yahoo - all have to deal with that).
If at all possible, use a tool, and document your use of it so that whoever has to maintain your sprites knows about it. http://csssprites.org/ is the only tool I've looked into in any detail, but http://spriteme.org/ looks seriously awesome.