//Motivational quotes script
//By JavaScript Kit (http://javascriptkit.com)
//Over 400+ free scripts here!

var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]="<p class='headline'>Helping Main Street Stand up to Wall Street.</p>"

quotes[1]="<p class='headline'>Working to Get Your Money Back.</p>"

quotes[2]="<p class='headline'>We're There When You Need Us.</p>"

var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])