var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='Thanks for stopping by my web site!'
quotes[1]='Are you ready to start digging? Well then, let\'s get a move on!'
quotes[2]='Hand me a shovel, it\s getting pretty deep in here!'
quotes[3]='I hope you brought your shovel with you!'
quotes[4]='Under the dirt, beneath the surface who are you ... really?'


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

//quotes[]=''

