
// JavaScript Document

 

// Set up the text files to be used.

var theText = new Array() // do not change this


 

theText[0] = '<div class="quotebox"><div class="quote">"It is the service and the results that AIS provides that has kept me coming back for almost five years." <div class="quotetitle">--John Gehrisch, President & CEO BBJM Golf Ventures </div></div></div>';

theText[1] = '<div class="quotebox"><div class="quote">"AIS has a very contemporary bandwidth of offerings and services. They are always able to identify the issue and resolve it, and a lot of time they are able to do this offsite from their offices. I don’t have to wait for an open appointment and it’s convenient because it’s not always possible to be home for a service call." <div class="quotetitle">--Rikki Farr, AIS client </div></div></div>';

theText[2] = '<div class="quotebox"><div class="quote">"Everything Roman says he’ll do, he does. Everything he says is going to happen, happens and if he says he’s going to be there, he is. He’s efficient and inspires you to choose well and for your specific situation."<div class="quotetitle">--Julie Bennett, Fijisuede, Inc., costumer designer and wardrobe stylist for TV and film</div></div></div>';

theText[3] = '<div class="quotebox"><div class="quote">"AIS has been incredibly supportive. When I call for service, they have one of the fastest responses I have experienced. And in a service-oriented industry, it is their level of service and depth of knowledge that is so impressive"<div class="quotetitle">--Rikki F, AIS client</div></div></div>';

theText[4] = '<div class="quotebox"><div class="quote">"AIS works with a high level of integrity. Technicians are punctual, have a great attitude, they are knowledgeable and they do what they say they are going to do."<div class="quotetitle">--Terry P, business and home owner</div></div></div>';


// do not edit anything below this line

 

var j = 0

var p = theText.length;

var preBuffer = new Array()

for (i = 0; i < p; i++){

preBuffer[i] = new Array()

preBuffer[i].src = theText[i]

}

var whichText = Math.round(Math.random()*(p-1));

function showText(){

//This a wrapper for the text array it can be changed if need

document.write('<p class="thetext">'+theText[whichText]+'</p>');

}