
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='Images in Appreciation of Creation'
quotes[1]='The World is an Amazing Sculpture'
quotes[3]='Welcome to On The Edge Photography'
quotes[4]='Thanks for Visiting us at On The Edge'

var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])
