Generally this is a sign that you accidentally created a bunch of rows then deleted them. I've had this happen through poorly-thought-out loops before, or even just bad application logic. In any event, it's caused by deleting records from the table. It can also be caused by manually altering the identity seed, but unless you're intentionally trying to do that, it's fairly unlikely that it'd happen. Particularly if you work with a team who has access to the database, it's quite conceivable that someone else made some minor mistake that wasted a few values. I'm sure it's nothing worth worrying about.
A quick, inline edit: I see you found reference to a "bug" that does this exact thing. I wasn't aware of that, but it certainly explains it. My points still stand, though. It's really nothing worth worrying about in a majority of cases.
That all said, you can reset the identity column, and a search will certainly tell you how to do that. You could also just drop the column and re-add it. But I normally just ignore it when this sort of thing happens. That thousand won't make any real difference if you're going to hit 2^31 records anyway, and any well-written program won't need the IDs to be in any particular format or under any particular restriction to work.