﻿    function RandomTestimonial() {
        var testimonial = new Array();
        var t_name = new Array();
        var t_title = new Array();
        var t_company = new Array();

        testimonial[0] = "I'm really pleased with the great service!  I can now spend more time focusing on my business and less time worrying about my computer systems.";
        t_name[0] = "Curt Keller"
        t_title[0] = "CEO"
        t_company[0] = "Benchmark Email"

        testimonial[1] = "The money we saved was only one of the deciding factors for us.";
        t_name[1] = "Stephanie Miller"
        t_title[1] = "Vice President of IT"
        t_company[1] = "Hispanic Scholarship Fund"

        testimonial[2] = "We also wanted a company behind us that would give us the support we needed.  You guys have been outstanding on both fronts.";
        t_name[2] = "Leigh Bashor"
        t_title[2] = "Vice President"
        t_company[2] = "Biddle Consulting Group"

        testimonial[3] = "Wasn't sure how 'the cloud' was going to help my business until I talked with PayPerCloud.  After working with the PPC team I found that I had all the things I needed my computer systems to do without all the constant headaches.  Now I couldn't live without it.";
        t_name[3] = "Rick Bloom"
        t_title[3] = "Owner"
        t_company[3] = "Rick Bloom Audio Visual"

        testimonial[4] = "When we found PayPerCloud we were trying to get a better disaster recovery solution in place.  I now sleep better knowing that PayPerCloud has helped me implement a much more robust DR solution and my systems are monitored and protected 24x7x365.";
        t_name[4] = "Stephanie Miller"
        t_title[4] = "Vice President of IT"
        t_company[4] = "Hispanic Scholarship Fund"

        var i = Math.floor(5 * Math.random());
        var p_testimonial = document.getElementById("randomTestimonial");
        p_testimonial.innerHTML = testimonial[i];

        var p_t_name = document.getElementById("t_Name");
        p_t_name.innerHTML = t_name[i] + ",<br /> " + t_title[i] + "<br />" + t_company[i];
    }

