img0 = new Image();
img1 = new Image();
img2 = new Image();
img3 = new Image();
img4 = new Image();

img0.src = "/graphics/home/testimonial/andy.jpg";
img0.alt = "ElephantDrive gave our firm a disaster recovery solution without having to invest in hardware. Andy T., St. Joseph, MI";
img1.src = "/graphics/home/testimonial/inge.jpg";
img1.alt = "ElephantDrive protects my precious pictures and videos. Inge I., Marina Del Rey, CA";
img2.src = "/graphics/home/testimonial/bengt.jpg";
img2.alt = "ElephantDrive allows me to access my important data securely from anywhere in the world. Bengt K., Stockholm, Sweden";
img3.src = "/graphics/home/testimonial/jerry.jpg";
img3.alt = "ElephantDrive is my digital insurance. Jerry P., Miami, Fl.";
img4.src = "/graphics/home/testimonial/nellie.jpg";
img4.alt = "ElephantDrive's invaluable service protects my writing as well as my wedding pictures. Nellie R., Los Angeles, CA.";

var testimonial_img = new Array();
var testimonial_txt = new Array();

// Enter the names of the images below
testimonial_img[0]=img0.src;
testimonial_img[1]=img1.src;
testimonial_img[2]=img2.src;
testimonial_img[3]=img3.src;
testimonial_img[4]=img4.src;
  
testimonial_txt[0]="We needed a disaster recovery solution for our financial planning company. ElephantDrive was able to provide it without us having to invest in hardware.<br><br>-- Andy T.<br>St. Joseph, MI";
testimonial_txt[1]="My hard drive failed. I freaked. I had all the pictures and video of my son on that computer. Thank God for ElephantDrive - I was able to get them all back.<br><br>-- Inge I.<br>Marina Del Rey, CA";
testimonial_txt[2]="As the CEO of Global Learning Center my work requires me to travel between Thailand and Sweden often. ElephantDrive gives me access to all the important files I have no matter where I am in the world.<br><br>-- Bengt K.<br>Stockholm, Sweden";
testimonial_txt[3]="In Florida, hurricanes and electrical storms are real concerns. I sleep easier knowing that with ElephantDrive my important photos and financial data are automatically backed up every night. When the storm comes, I've got digital insurance working for me.<br><br>-- Jerry P.<br> Miami, Fl."
testimonial_txt[4]="It's comforting to know that even if my computer lets me down, ElephantDrive never will. Not only is all my writing protected, but my wedding photos are also safe - an invaluable service! Thanks for giving me a more convenient alternative to my old zip drives.<br><br>-- Nellie R.<br> Los Angeles, CA."

var testimonial = 0;
var totaltestimonial = testimonial_img.length;

function cycletestimonial() {
  testimonial++;
  if (testimonial == totaltestimonial) {
    testimonial = 0;
  }
  
 document.getElementById("Testimonial_img").src=testimonial_img[testimonial];
 document.getElementById("Testimonial_txt").innerHTML = testimonial_txt[testimonial];
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycletestimonial()", 10*1000);
}
//window.onload=setTimeout("cycletestimonial()", 10*1000);
