
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 am a returning customer. I really enjoyed your service the first time and that is why I came back. Thank you!'; 
  person[0]='Ryan F.';
  location[0]='Kansas City, MO';

  quote[1]='Excellent free service which I definitely appreciated, especially during a hectic time like moving. Thanks!'; 
  person[1]='Katrina C.';
  location[1]='Nashville, TN';

  quote[2]='I moved out of state 2600 miles and the quickness and responsiveness of this site was VERY HELPFUL during my move. Thank you so much';
  person[2]='Michelle T.';
  location[2]='Columbus, OH';
  
  quote[3]='My experience was very good. You made it easy and understandable. If I find the need for anything else your site provides I will certainly be back.';
  person[3]='John G.';
  location[3]='Poughkeepsie, New York';
  
  quote[4]='It was great to be able to take care of everything in one place at one time.';
  person[4]='Paul C.';
  location[4]='Phoenix, AZ';
   
  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); 
  } 
