@johnwasser - unfortunately, this did not work. No change.
@Nick Gammon - thanks for catching my typo

. I've actually never investigated fuse settings before, so I'm not sure what you mean/how to check them. I don't have a programmer, but I found another post (
http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1287169320/0)that looks like a software way to check the fuse settings. If you scroll halfway down to the post by
westfw, he posted a sketch that returns what looks to be fuse information. Is this the information you're after?
Concerning the array of data, no there's not much 0xFF data in it. In fact, most of the data is actually 0x00, corresponding to 'off' LEDs. This data can change from time to time depending on the pattern I'll be displaying, but still rarely any 0xFF's are used. Here's the first few lines if you're still curious:
PROGMEM prog_uchar frames[] = {
/*** 0-0-0 ***/ 0, 72, 0, 127,
/*** 0-0-1 ***/ 0, 4, 0, 191,
/*** 0-0-2 ***/ 0, 0, 128, 223,
/*** 0-0-3 ***/ 0, 146, 64, 239,
/*** 0-0-4 ***/ 0, 90, 0, 247,
/*** 0-0-5 ***/ 0, 90, 0, 251,
/*** 0-0-6 ***/ 0, 8, 0, 253,
/*** 0-0-7 ***/ 0, 72, 6, 254,