<!-- begin JavaScript
 function randomQuote(){
 
   quote = new Array();
   author = new Array();

   
   quote[0] = "&quot;Joe Campbell, from the first meeting to handing over the keys, provided us with excellent service in the selling of our home and the purchase of our new one.&quot;";
   author[0] = "Cam & Danyne Johnston";
   
   quote[1] = "&quot;It was a pleasure to work with him in finding our new home. Thanks Joe! &quot;";
   author[1] = "Liana Campbell & Murray Comley";
      
   quote[2] = "&quot;For a first time buyer with a limited budget, Joe provided me with all the information I needed. &quot;";
   author[2] = "John Woods";
   
   quote[3] = "&quot;Over the past few years, my relationship with Joe has evolved from realtor to colleague and to friend.&quot;";
   author[3] = "Nathan Tash";
      
   quote[4] = "&quot;Thank you very much Joe for your great work and assistance in selling our home and helping us focus in on new real estate opportunities.&quot;";
   author[4] = "Dwayne & Lorelei Mayes";
   
   quote[5] = "&quot;He was in tune with our needs and wants and quickly found us just the kind of place we were we were looking for!&quot;";
   author[5] = "Amber Angelucci";
      
   quote[6] = "&quot;A key agent to have if you want to be on top of the real estate market!&quot;";
   author[6] = "Derek Heidt";
   
   quote[7] = "&quot;I appreciated his integrity when representing me and I would unreservedly recommend Joe to anyone seeking a realtor.&quot;";
   author[7] = "Julie Garner";
  
  quote[8] = "&quot;Joe was professional, friendly, and really listened to our needs.&quot;";
  author[8] = "Rob and Shauna Goodsell";
    
  quote[9] = "&quot;Selling our place in one day at better than asking price...we were impressed.&quot;";
  author[9] = "Inger & Harry Gehrmann";
  
  quote[10] = "&quot;Smart and savvy - I was glad Joe was my realtor!&quot;";
  author[10] = "Daphne  Page";
  
   quote[11] = "&quot;Why settle for someone less?&quot;";
  author[11] = "Eddi Sponza";
  
 quote[12] = "&quot;Peter and I wanted to write you to express our sincere appreciation for you professional approach to the prompt sale of our home..&quot;";
  author[12] = "Leslie Gilbert";

  quote[13] = "&quot;We have just completed our fourth Real Estate transaction with Joe and it was another huge success!&quot;";
  author[13] = "Shaun & Deanna Rutherford";
  
  quote[14] = "&quot;Thank you for all your help and patience in sourcing the exacting home of our dreams.&quot;";
  author[14] = "Scott Jamieson";
    
  //calculates a random index
  index = Math.floor(Math.random() * quote.length);

  //document.write("<div class='announctxt'>" + quote[index] + "</div>");
  //document.write("<div align=right class='decblue3'><b>"  + author[index] + "</b></div>");
  //alert("<img src='quotephotos/quote_photo_"+index+".jpg'>");
  ////
  document.write("<br>"+ quote[index] + "<br><br><b>" + author[index] +"</b>")
  
  ////

  
}
// end JavaScript -->