Not rightly sure. Rich, more than most, tends to have a lot of animosity built up. These questions are simplistic in nature, and people are railing on him for it, which is rather wrong, IMO. While I've certainly sparred a bit with him, I don't think he deserves a down voting to oblivion on very old questions (the newest is from 11/6/08). I've given an upvote to them all.
So taking a look at the Sandbox, it turns out that the first vote for this question did not come until 2/10/09--three months after posting. It was a downvote, by the way. In fact, two downvotes were registered at the exact same timestamp (1234252800) (it appears this is rounded to the nearest 100th, which means they were registered within 100 seconds of each other). The last vote was registered on 6/30/09 (in the data dump--obviously stopping at June). There were five consecutive down votes from 5/11/09 to 6/11/09.
You can get the votes with the following query:
select
case votetypeid
when 2 then 'Up'
when 3 then 'Down'
else 'N/A'
end as votetype,
creationdate
from
votes
where
postid = 269003
order by 2
Note: dateformat(creationdate, '%m/%d/%y') fails out, so you can use this handy-dandy UNIX Epoch converter.
So, it doesn't look like it was one concerted effort or fraud. Just a few retaliatory votes that resulted in a bit of group thought. Sad, but a fact of life. All three questions exhibit the same behavior--multiple votes over time, not one specific fraud or event.