<!-- Begin
var howMany = 8
var quote = new Array(howMany+1)
quote[0]="Feline Facts... Did You Know?"
quote[1]="Kitten-proofing Your House "
quote[2]="Your Cat Needs A Tag!"
quote[3]="The Litter Box Blues"
quote[4]="Don't Let the Cat Out"
quote[5]="A String of Errors"
quote[6]="Cat Games"
quote[7]="The Truth About Cats and Babies"
quote[8]="ASPCA Cat Statitistics"
function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)
// End -->



