More likely you have a syntax error in the array. Post a link to your page or the code for your array. Avoid using unescaped single quotes (') inside the text delimited by single quotes, ex:
Code:
messages[1] = new Array('duck2.gif','Here's a duck on a light blue background.',"#DDECFF");
will not work but, this will:
Code:
messages[1] = new Array('duck2.gif','Here\'s a duck on a light blue background.',"#DDECFF");
And make sure your arrays follow the template, especially as far as quoting, commas, sequential numbering (don't skip any numbers) go.
Bookmarks