
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='<a href=http://www.ymonline.com>Young Musicians</a>'
quotes[1]='<a href=http://www.vantexonline.com>Vantex Electric Products</a>'
quotes[2]='<a href=http://www.starwars.com>Star Wars</a>'
quotes[3]='<a href=http://www.lordoftherings.com>Lord of the Rings</a>'
quotes[4]='<a href=http://www.nascar.com>NASCAR</a>'


var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])
