var NS4 = (document.layers) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;

onload = start;

var ar = new Array();
ar[0] = "<STRONG>Hot Breaking News:</STRONG> Ageless Fantasy partners with Jackie Silver author of Aging Backwards: Secrets to Staying Young";
ar[1] = "<STRONG>Hot Breaking News:</STRONG> Watch Ageless, anti age perfume on QVC.";
ar[2] = "<STRONG>Hot Breaking News:</STRONG> Harvey Nichols signs partnership agreement to retail in the United Kingdom.";
ar[2] = "<STRONG>Hot Breaking News:</STRONG> Harvey Prince & Co. eye China & India market to distribute Ageless anti age perfume.";
ar[2] = "<STRONG>Hot Breaking News:</STRONG> AGELESS anti age perfume featured on the Daily Buzz TV is 160 major markets.";
ar[3] = "<STRONG>Hot Breaking News:</STRONG> Harvey Prince & Co. finalizes Midlle East marketing plan and rollout.";

var num = 0;

function start() {
  setInterval("update()", 3500);
}

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 {
    if(document.getElementById(id)==undefined){return;}
    document.getElementById(id).innerHTML = str;
  }
}


				  
