var howMany = 5
var quote = new Array(howMany+1)
quote[0]="Life Verse:  Habakkuk 2:3"
quote[1]="Novels: Redeeming Love by Francine Rivers and The Lion, the Witch, and the Wardrobe by C.S. Lewis"
quote[2]="Color: Green"
quote[3]="Treat: Dark chocolate, especially Godiva's dark chocolate covered cherries! Yum!"
quote[4]="Animal: Dogs. No, wait, cats. Or Tigers! Yeah, tigers are cool. But then there's Meerkats and pandas and horses... Oh, fine! All of 'em."
quote[5]="Irish Blessing: May you have warm words on a cold evening, a full moon on a dark night and a smooth road all the way to your door."
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)
