
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='Hole-in-one club: Steven Nguyen, Niki Jerrel (twice), Bobby Ly, Thai Lam'

//quotes[1]='The hell <a href="contact.html">with</a> the hole-in-one club! :)'


var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])
