
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='We are what&#8217;s new<br /> & fresh out there.'

quotes[1]='We do the web<br />the way it likes it.'

quotes[2]='&#8220;The possibility of<br />victory is in the attack.&#8221;<br/><span style="font-size:12px; font-style:normal; padding-top:8px;float:right;margin-bottom:-20px;">Sun Tzu</span>'

quotes[3]='We make your business<br />look good.'


var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])

