var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "I appreciate your honesty and desire to educate and inform as opposed to trying to simply sell insurance. When you feel your agent is in your corner, it makes all the difference.<br /><br /><span class='saying-names'>Trudi Trueit, Everett</span>";
Quotation[1] = "You're the best at what you do...<br />I know my interests are always primary.<br />I don't know how I could be served better. Thanks for being there!<br /><br /><span class='saying-names'>Frank Klarich, Everett</span>";
Quotation[2] = "Personable, professional, outstanding customer service... a sincere, helpful nature and detailed answers to questions backed by researched information. Thanks for checking into everything for us.<br /><br /><span class='saying-names'>Brian and Jean Rush,<br />Marysville</span>";
Quotation[3] = "Bernard Insurance Agency has written my company’s different insurance policies since 2004. They are always available to answer my questions, and have always provided excellent customer service. It’s important to trust your agent and know they are looking out for your best interest.  I wouldn’t use anyone else.<br /><br /><span class='saying-names'>Shannon Brummett Donaldson,<br />Castlerock Mortgage Group</span>";
// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
