
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='Hardware Recycling'

quotes[1]='Reduced Power Usage'

quotes[2]='Server Virtualization'

quotes[3]='Refurbished Toner Cartridges'

var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])
