
var dLayers = (document.layers) ? 1 : 0;
var dElements = (document.getElementById) ? 1 : 0;

var ar = new Array();
ar[0] = "<a href='http://www.loc.gov/exhibits/empire/object.html' class='home'>Tsar's Photographer</a>";
ar[1] = "<a href='http://www.roadsideamerica.com/' class='home'>Roadside America</a>";
ar[2] = "<a href='http://bodin.org/' class='home'>Buzzword Free Zone</a>";
ar[3] = "<a href='http://www.ubu.com' class='home'>Ubu Web</a>";
ar[4] = "<a href='http://www.potatoland.org/pl.htm' class='home'>Potatoland</a>";
ar[5] = "<a href='http://www.planet.dk/phaze/' class='home'>Planet Phaze Game</a>";
ar[6] = "<a href='http://www.turbulence.org' class='home'>turbulence</a>";
ar[7] = "<A HREF='http://www.ok-ok.de/'  class='home'>o.k. - Versand</A>";
ar[8] = "<a href='http://www.texasfreeway.com/default.shtml' class='home'>TexasFreeway.com</a>";
ar[9] = "<a href='http://www.superbad.com' class='home'>SuperBad</a>";
ar[10] = "<a href='http://www.flong.com/telesymphony/' class='home'>Dialtones</a>";
ar[11] = "<a href='http://www.erikyyy.de/tempest/' class='home'>Tempest For Eliza</a>";
ar[12] = "<a href='http://www.interestingideas.com/' class='home'>Interesting Ideas</a>";
ar[13] = "<a href='http://www.cfc.co.uk/cfc_website/site/html/video_guinness_dream_main.html' class='home'>Guiness Dream Club</a>";
ar[14] = "<a href='http://home2.planetinternet.be/henk/thumbnails.htm' class='home'>Abandoned Places</a>";

var num = 0;

function display(id, str) {
  if (dLayers) {
    with (document.mainContent.document[id].document) {
      open();
      write("<br>" + str);
      close();
    }
  } else {
  	if (document.getElementById(id)) {
	document.getElementById(id).innerHTML = str;
	}
  }
}

function update() {
  display("banner", ar[num]);
  num++;
  if (num == ar.length) num = 0;
}

function start() {
  setInterval("update()", 2000);
}

onLoad=start();

