var ar = new Array();
ar[0] = "MagicLamp tooks us from nothing to sales on the web!<br>- Lula Lu";
ar[1] = "My site brings leads in every month, and Magiclamp made it happen.<br>- Miguel Pola";
ar[2] = "MagicLamp is more than just web design & hosting, they are our partner for business on the web<br>-- Norman Hick, Hicks Brothers Printing Equipment";
ar[3] = "The people at MagicLamp really know their stuff, and helped us understand about how to do business on the web.<br>- Stan, FrontLine Sports";

var num = 0;

start();

function start() {
  setInterval("update()", 6000);
}

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;
  }
}