So far this is what I've got (naturally, the quotes are different than what the site put that I got it from).
CODE
<script language="JavaScript">
function rotateEvery(sec)
{
var Quotation=new Array()
// QUOTATIONS
Quotation[0] = "Have you had your daily dose of Leetbix today?";
Quotation[1] = "It's like a Randomtastic Adventure, man!";
Quotation[2] = "Mr. Jiggles says Hi and welcome to his website!";
Quotation[3] = "WARNING: This site is not recommended for children.";
Quotation[4] = "Or adults, for that matter...";
var which = Math.round(Math.random()*(Quotation.length - 1));
document.getElementById('textrotator').innerHTML = Quotation[which];
setTimeout('rotateEvery('+sec+')', sec*3000);
}
</script>
function rotateEvery(sec)
{
var Quotation=new Array()
// QUOTATIONS
Quotation[0] = "Have you had your daily dose of Leetbix today?";
Quotation[1] = "It's like a Randomtastic Adventure, man!";
Quotation[2] = "Mr. Jiggles says Hi and welcome to his website!";
Quotation[3] = "WARNING: This site is not recommended for children.";
Quotation[4] = "Or adults, for that matter...";
var which = Math.round(Math.random()*(Quotation.length - 1));
document.getElementById('textrotator').innerHTML = Quotation[which];
setTimeout('rotateEvery('+sec+')', sec*3000);
}
</script>
All help = Greately appreciated. And Mr. Jiggles shall commemorate you for it when he feels like it. I shall commemorate you in a post if you help me. Either way, we both shall be appreciative.