// Rotate Testimonials
var NS4 = (document.layers) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;

onload = start;

var ar = new Array();
ar[0] = "...a presentation that was not only interesting, but entertaining and thought provoking...";
ar[1] = "The least boring speaker we\'ve ever had. ...";
ar[2] = "Your insights and heartfelt comments stirred the crowd and left everyone with a bright outlook on their business and personal lives.";
ar[3] = "No one can walk away after hearing you without being motivated to do something to improve their life, their community and the world.";
ar[4] = "From the moment we contacted you through the final, standing ovation... you fulfilled all of our expectations.";

var num = 0;

function start() {
  setInterval("update()", 5000);
}

function update() {
  display("banner", ar[num]);
  num++;
  if (num == ar.length) num = 0;
}

function display(id, str) {
  if (NS4) {
    with (document[id].document) {
      open();
      write(str);
      close();
    }
  } else {
    document.all[id].innerHTML = str;
  }
}