﻿
    var quotations = new Array()
    quotations[0] = "\"Thank you all for your patience and kindness.\"<br /> --Bette McCue"
    quotations[1] = "\"There are no words say. Thank you for all you have done for me. You all made me so comfortable each time I visited you.\"<br /> --Joan Higgins"
    quotations[2] = "\"I want all of you to know that I am deeply appreciative of your time, patience, and kindness shown to me in the testing.\"<br /> --Idalene Fink"
    quotations[3] = "\"Very positive experience-thanks.\"<br /> --Michael D."
    quotations[4] = "\"All of the staff get an A+.\"<br /> --Neil M."
    quotations[5] = "\"Everyone was courteous and friendly from start to finish...\"<br /> --W. Crede III"
    quotations[6] = "\"My doctor was polite, informative, thorough.  She didn’t make me feel she had to hurry and get to the next patient...\"<br /> --N. Kohl"
    quotations[7] = "\"Everyone was very nice and courteous.\"<br /> -J. Beckius"
    quotations[8] = "\"Everything on my first visit went smoothly and efficiently.  The staff were well qualified and informative...\"<br /> --I. Rapolas"
    quotations[9] = "\"I was very satisfied with my visit.  I was very pleased with my doctor.  She explained everything so well to me!...\"<br /> --J. Metzker"
    quotations[10] = "\"I was impressed from the front desk through the whole process.  Very impressed with exam and procedures...\"<br /> --J. Grider"
    quotations[11] = "\"I was impressed by the overall attention paid me.  The doctor and assistant both were very courteous...\"<br /> --E. Parker"


    function display() {
        a = Math.floor(Math.random() * quotations.length)
        document.getElementById('quotation').innerHTML = quotations[a]
        setTimeout("display()", 5000)
    }

