﻿$(document).ready(function() {
    var testimonialArray = new Array(
    "11/1/2008~~9102353475~~Kimberly~~M.~~This was my first brand new Car. The procedure was explained fully. I knew what the next step was. The car was at a great price and very convenient location. AND the car arrived EARLIER than was predicted. That was awesome. Thank You.", 
    "1/23/2009~~9102343922~~Doug~~G.~~A simple way to purchase a car from a very knowledgeable sales staff.",
    "1/24/2009~~9102359133~~Randy~~G.~~My buying experience was overall EXCELLENT with AX! If I were in the market to buy another vehicle I wouldn’t look any further than this. Great job AX!",
    "2/2/2009~~9102349133~~Jeremiah~~B.~~Thanks for your honest and experienced sales staff. I look forward to working with them again when I purchase my VW Toureg."
);
    var testimonial = testimonialArray[0].toString().split("~~");
    document.getElementById("testimonials").innerHTML = testimonial[4];
    document.getElementById("author").innerHTML = testimonial[2] + " " + testimonial[3];

    
    setInterval(switchTestimonials,5000);
    
    function switchTestimonials() {
        
        var randNum = Math.floor(Math.random()*testimonialArray.length);
        var testimonial = testimonialArray[randNum].toString().split("~~");
        document.getElementById("testimonials").innerHTML = testimonial[4];
        document.getElementById("author").innerHTML = testimonial[2] + " " + testimonial[3];

    }
});

