function changeTestimonial() { 
  document.getElementById('testimonials').innerHTML = "<p>We received our package Monday. I want to thank you for going that extra to get me what I needed. Thank you all at Advantage Hobby. Can't wait to do more business.</p><p>Brian</p>"; 
  var script = document.createElement("script");
  script.setAttribute("type", "text/javascript");
  script.setAttribute("src", "javascript/testimonials.js.php?delay=true&rand="+new Date());
  var head = document.getElementsByTagName('head')[0];
  if (x = document.getElementById("testimonialsScript")) {
   // remove old script
    head.removeChild(x);
  }
  // add script
  script.id="testimonialsScript";
  head.appendChild(script);
}

