// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

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] = "<a href='#' onclick=\"openPage('/definitions/annuity.html'); return false;\">Annuity</a>";
Quotation[1] = "<a href='#' onclick=\"openPage('/definitions/assessments.html'); return false;\">Assessments</a>";
Quotation[2] = "<a href='#' onclick=\"openPage('/definitions/certified_check.html'); return false;\">Certified Check</a>";
Quotation[3] = "<a href='#' onclick=\"openPage('/definitions/default.html'); return false;\">Default</a>";
Quotation[4] = "<a href='#' onclick=\"openPage('/definitions/defined_benefit_plans.html'); return false;\">Defined Benefit Plans</a>";
Quotation[5] = "<a href='#' onclick=\"openPage('/definitions/effective_tax_rate.html'); return false;\">Effective Tax Rate</a>";
Quotation[6] = "<a href='#' onclick=\"openPage('/definitions/ecrow.html'); return false;\">Escrow</a>";
Quotation[7] = "<a href='#' onclick=\"openPage('/definitions/flood_insurance.html'); return false;\">Flood Insurance</a>";
Quotation[8] = "<a href='#' onclick=\"openPage('/definitions/hedge_fund.html'); return false;\">Hedge Fund</a>";
Quotation[9] = "<a href='#' onclick=\"openPage('/definitions/homeowners_insurance.html'); return false;\">Homeowners Insurance</a>";
Quotation[10] = "<a href='#' onclick=\"openPage('/definitions/liability_insurance.html'); return false;\">Liability Insurance</a>";
Quotation[11] = "<a href='#' onclick=\"openPage('/definitions/lien.html'); return false;\">Lien</a>";
Quotation[12] = "<a href='#' onclick=\"openPage('/definitions/mutual_fund.html'); return false;\">Mutual Fund</a>";
Quotation[13] = "<a href='#' onclick=\"openPage('/definitions/negative_equity.html'); return false;\">Negative Equity</a>";
Quotation[14] = "<a href='#' onclick=\"openPage('/definitions/prime.html'); return false;\">Prime</a>";
Quotation[15] = "<a href='#' onclick=\"openPage('/definitions/secured_loan.html'); return false;\">Secured Loan</a>";
Quotation[16] = "<a href='#' onclick=\"openPage('/definitions/subrogation.html'); return false;\">Subrogation</a>";
Quotation[17] = "<a href='#' onclick=\"openPage('/definitions/tax_deduction.html'); return false;\">Tax Deduction</a>";
Quotation[18] = "<a href='#' onclick=\"openPage('/definitions/title_insurance.html'); return false;\">Title Insurance</a>";


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