var Quotation=new Array() 

Quotation[0] = "If you&#8217;re the victim of a hit and run accident, you could still be entitled to reimbursement, thanks to a special provision in your own insurance policy?";
Quotation[1] = "If you&#8217;re in an accident, your have the right to have an attorney present when you talk to an insurance company?";
Quotation[2] = "If you&#8217;re the victim of a hit and run driver, you might still be entitled to compensation for your injuries?";

// ======================================
// 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]);
}

