﻿var testnames = [
            "Steve W.",
            "Peggy D.",
            "Laura P.",
            "George and Patricia M.",
            "Carrie B.",
            "Tom K.",
            "David and Kathleen E.",
            "Richard and Tara V.",
            "Sandy and Ron C.",
            "Kristopher A.",
            "Eva and Amy M.",
            "Ronald D.",
            "Carol H.",
            "Cathy and Benny B.",
            "Cameron K.",
            "Veronica M.",
            "Charlene and Robert B.",
            "Jeremy H."
        ];

var testlocations = [
            "Lake Saint Louis",
            "Thornton",
            "Katy",
            "Jacksonville",
            "Watauga",
            "Chandler",
            "Las Vegas",
            "Douglasville",
            "Coatesville",
            "Arnold",
            "Denver",
            "Pflugerville",
            "Jacksonville",
            "Irving",
            "Phoenix",
            "Las Vegas",
            "Social Circle",
            "Greenfield"
        ];

var testquotes = [
            "&ldquo;He was great, called him a lot to ask questions and he answered them if not he found the answer and called me back.  Great person; would like to deal with him again.&rdquo;",
            "&ldquo;My loan officer was very thorough and always upbeat.  I could tell he was honest and trustworthy.&rdquo;",
            "&ldquo;Loan Officer was upfront and honest.&rdquo;",
            "&ldquo;Everyone was very helpful and friendly.  They worked around our schedule.&rdquo;",
            "&ldquo;Our loan officer was wonderful!  He did everything all the other companies told us they would do but were unable to follow through on.  He did everything we asked of him and more!  Thank you!&rdquo;",
            "&ldquo;L.O. was great.  Very professional. Fast closing. Easy from start to finish.&rdquo;",
            "&ldquo;Loan officer was just amazing.&rdquo;",
            "&ldquo;Everything was great!  We will highly recommend our loan officer to our friends for future business.&rdquo;",
            "&ldquo;My loan officer took time for me. He was interested in my problem – he was awesome! He is a valuable asset to your company.&rdquo;",
            "&ldquo;Very thorough and exceptionally fast.&rdquo;",
            "&ldquo;It was great how quickly everything took place.&rdquo;",
            "&ldquo;The terms of the loan itself stood out. I shopped around quite a bit and no one came close.&rdquo;",
            "&ldquo;Fast and Painless; Everyone was so personable and it was not at all stressful. It went so smoothly even when my husband had to be out of town.&rdquo;",
            "&ldquo;It was very quick and our loan officer was great!  He kept me informed about everything!&rdquo;",
            "&ldquo;My loan officer was especially helpful.  She’s been extremely responsive and continually displayed the highest levels of professionalism.&rdquo;",
            "&ldquo;Very efficient and quick.&rdquo;",
            "&ldquo;Everything was great!  We will highly recommend our loan officer to our friends for future business.&rdquo;",
            "&ldquo;I was given goals to meet over about a three month period so as to get the best loan available to me.  My previous lender did not do that.&rdquo;"
        ];

var testindex = -1;

$(document).ready(function () {
    $("#testimonial").click(function (event) {
        $(this).fadeTo(2000, 0.0, function () {
            if (testindex < 17) { testindex++; } else { testindex = 0; }
            /*
            testimonial = [testnames[testindex], testlocations[testindex], testquotes[testindex]];
            $('#testimonialquote').html(testimonial[2]);
            $('#testimonialname').html(testimonial[0]);
            $('#testimoniallocation').html(testimonial[1]);*/

            
            $('#testimonialquote').html(testquotes[testindex]);
            $('#testimonialname').html(testnames[testindex]);
            $('#testimoniallocation').html(testlocations[testindex]);

        });
        $(this).fadeTo(2000, 1.0);
    });
});

var intervalID = window.setInterval(fadeTestimonial, 8000);
function fadeTestimonial() {
    $("#testimonial").click();
}
