
showTestimonial();

function showTestimonial() {
var j,d="",l="",m="",p="",q="",z="";
var quote = new Array();
var person = new Array();
var location = new Array();

  quote[0]='I\'m glad that your company is here to help when I needed.'; 
  person[0]='Max S.';
  location[0]='Omaha, NE';

  quote[1]='My experience was very good. You made it easy and understandable.'; 
  person[1]='Shelly M.';
  location[1]='Little Rock, AR';

  quote[2]='I was amazed at how easily I was able to get every service that I needed at one time.';
  person[2]='Raina T.';
  location[2]='Columbia, South Carolina';
   
  j=parseInt(Math.random()*quote.length); 
  j=(isNaN(j))?0:j; 
    document.write(quote[j]+"<br /><br />"+person[j]+"<br /> "+location[j]); 

}

function rndSlideShow(t,l) { 
  x=document.randomSlideShow; 
  j=l; 
  while (l==j) { 
    j=parseInt(Math.random()*quote.length); 
    j=(isNaN(j))?0:j; 
  } 
  x.src=list[j]; 
  setTimeout("rndSlideShow("+t+","+j+")",t); 
  } 
