var howMany = 4
var quote = new Array(howMany+1)
quote[0]="\"Our company has had nothing but exceptionally fine dealings with Finch Insurance Services and I would highly recommend them without reservation.\"<br />S.Long<br />Tulsa, OK"
quote[1]="\"I was hesitant about changing insurance agents, but Finch Insurance Services not only saved me a significant amount of money, but made the transition between insurance companies completely painless.\"<br />Dr. M.Peery<br />Tulsa,OK"
quote[2]="\"Every question or need I have ever had in regard to insurance coverage has been met with a knowledgeable, professional and pleasant response.\"<br />K.Medlin<br />Tulsa, OK"
quote[3]="\"I truly appreciate the personal touch Finch Insurance Services adds to what can be a very confusing and time consuming subject. They have always been quick to fully explain any policy questions I have.\"<br />K.Bailey<br />Broken Arrow, OK"
quote[4]="\"Finch Insurance Services is big on details -- which is a rare asset among many sales professionals. Their staff also has expertise with regard to Disability and Life coverage -- an even rarer asset in an industry focused on Medical insurance.\"<br />J.Guy<br />Plano, TX"
function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]

