
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='WorldWideAid Donates profits to charities and NGOs when you shop from the shopping section'

quotes[1]='WorldWideAid offers FREE hosting for you web site'

quotes[2]='We are not a dot com and it clearly shows'

quotes[3]='You can directly help the Red Cross from out front page'

quotes[4]='We offer free web goodies for your web site in our webmaster section'

quotes[5]='We make every click count day after day' 

var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])

