﻿
var testimonialArray = new Array();
testimonialArray[0] = "Thank you for an outstanding job. We are very satisfied of our finished product. The feedback to our site has been nothing short of sensational.";
testimonialArray[1] = "Right from the beginning your company shown professionalism and I am glad on my decision to choose you for the job.";
testimonialArray[2] = "Thanks to the whole team who made this all possible. You are a class act with a class product.";
testimonialArray[3] = "In the current competitive market, your Free website Demo really helped us staying in a comfort zone while making an investment decision.";


var testimonialArrayBy = new Array();
testimonialArrayBy[0] = "Beauty Me Please";
testimonialArrayBy[1] = "Velo Medical";
testimonialArrayBy[2] = "Dream Heaven Spa";
testimonialArrayBy[3] = "Video Commercial";



_index = 0;
function UpdateTestimonials() {
    setTimeout("changeTest()", 100);
    setTimeout("UpdateTestimonials()", 8000);
}

function changeTest() {
    if (_index > 3) {
        _index = 0;
    }

    var _testimonial = document.getElementById("txtTestimonials");
    var _testimonialBy = document.getElementById("txtTestimonialsBy");


    _testimonial.innerHTML = testimonialArray[_index];
    _testimonialBy.innerHTML = testimonialArrayBy[_index];
    _index++;
    return true;
}

