You're not blind or crazy, but you DID make the number one error with quotes - nesting them without using the \ character.The problem is in MSG[9] - you have embedded quotes, which confuses the rest of the script.
Replace the line with
msg[9] = "<p>A musician must make music<br>An artist must paint<br>A poet must write<br>If he is ultimately to be at peace with himself<br>What a man can do - he must be</p><p class=\"sml\">Albert Maslow</p>";
(The change I made was to put \ in front of the quotes in front of Albert Maslow)...
Enjoy
-Gene
PS: Beleive it or not, I came here to LEARN javascript - I've never done it before... But code is code is code