function changeTestimonial() { 
  document.getElementById('testimonials').innerHTML = "<p>This is outrageous.. My order has already shipped and I've received the UPS tracking information!!!! Man, you guys are fast and SUPER great! I've never seen anything like this! Keep up the great work guys. This is what I'm talking about...service where customers are #1 priority! I still have more stuff to order from you guys, but the ones I want are on backorder so I'm waiting for those to come in. Great job!!!</p><p>Regards,</p><p>Leng</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);
}

