//displays a random quote

function randomText() {
  var textArray = new Array();
  textArray = [
  "I was very happy with the whole experience. <p> &ndash; Framingham Customer</p>", 
  "It was a fabulous experience! Thank you! <p> &ndash; Framingham Customer</p>", 
  "The Manager went out of her way to make my experience with the facility OUTSTANDING. <p> &ndash; Framingham Customer</p>",
  "The people at EZ Storage are the GREATEST. <p> &ndash; Framingham Customer</p>",
  "The EZ Storage Manager was very nice and helpful in my accommodations. <p> &ndash; Framingham Customer</p>",
  "I had a very pleasant experience under personal difficulties. The Manager was excellent to work with. <p> &ndash; Framingham Customer</p>",
  "EZ Storage is <strong>The Best</strong>. <p> &ndash; Newton Customer</p>",
  "The Manager made my difficult move &quot;EZ&quot; <p> &ndash; Newton Customer</p>",
  "During a very trying time for my family, EZ Storage was there for me. <p> &ndash; Newton Customer</p>",
  "EZ Storage reviewed the security cameras to help me find my lost keys. <p> &ndash; Newton Customer</p>",
  "I greatly appreciate the friendly reminder phone calls from the EZ Storage Manager. <p> &ndash; Newton Customer</p>", 
  "The EZ Storage Manager was the best, a great guy for help during my rental. <p> &ndash; Newton Customer</p>",
  "I refer EZ Storage to all my friends and neighbors! <p> &ndash; Natick Customer</p>" ];
  
  var myRandom = Math.floor(Math.random()*13);
  // picks a random # from 0 to 12  (13 quotes total)
  
  //document.write (myRandom);
  document.write (textArray[myRandom]);
}