var msgRotateSpeed = 2500;
var msgCnt = 18;
var moorisms = new Array("Moore power to you",
"If it's more or less, I'll take Moore",
"Moore than you bargained for",
"Moore than you'll ever know",
"There's Moore to life",
"Why settle for less, when you can have Moore",
"Moore fun than a barrel of monkeys",
"Get Moore of what you need",
"Moore blessed to give than to receive",
"Please sir\, can I have some Moore",
"Bringing Moore to life",
"Moore to the point",
"Get Moore for your money",
"Get Moore out of life",
"Moore likely to be what you need",
"Journalist\, talking head and Moore",
"FurtherMoore",
"ForeverMoore",
"Moore than meets the eye");


if (document.getElementById) {
temp = 'document.getElementById("moorerotator").firstChild.nodeValue = moorisms[ranNum];';
}
else if (document.all) {
temp = 'moorerotator.innerHTML = moorisms[ranNum];';
}
var i = 0;
function msgRotate() {
ranNum = Math.random()*msgCnt;
ranNum = Math.round(ranNum);
eval(temp);
setTimeout("msgRotate()", msgRotateSpeed);
}

