// JavaScript Document

// Set up the text files to be used.
var theText = new Array() // do not change this


theText[0] = '"John was assigned to us... he comes in monthly making sure our IT is working correctly. I would call him and JCI Group our insurance policy. We don\'t have, internally, an IT  specialist..."<br><br><b>Jeff Bosch</b><br>President, Junior Achievement';
theText[1] = '"JCI Group is a reputable company to work with.  If we were completely down and couldn\'t get into anything they are very helpful to troubleshoot over the phone to get us back on line or to get someone here immediately..."<br><b>Fred Earl Keith Jr.</b><br>Business Manager Financial Secretary, International Brotherhood';
theText[2] = '"I would recommend this maintenance agreement or service agreement because it\'s important to have the ability to have someone come in and make sure the back ups are working and error messages are taken care of and so on..."<br><br><b>Tom Titus</b><br>Managing Partner, Titus & Urbanski';

// 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(){
document.write('<p class="testamonial">'+theText[whichText]+'</p>');
}
