
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='...Stand still and consider the wondrous works of God.<i>-Job 37:14</i>'

quotes[1]='Thy word is a lamp unto my feet, and a light unto my path. <i>-Psalm 119:104</i>'

quotes[2]='And Jesus looking down upon them saith, \'With men it is impossible, but not with God: for with God all things are possible.\' <i>-Mark 10:27</i>'

var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])

