

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/ */

/*  Ectozone Link Script
Established 110906r jh-32 
Version 82007m: Archive edition*/

function linkDisplay() {
  /* Enter the link name below. Each entry must have
     a unique number in the "[]" brackets. */
  var links = new Array();
    links[0]="Home";
    links[1]="Reference Center";
    links[2]="Fan Fictions";
    links[3]="Fan Art";
    links[4]="Forum";
    links[5]="Timeline";
    links[6]="Fact List";
    links[7]="Archives";
    links[8]="Links";
    links[9]="Ectozone.com";

  /* Enter the link URL below. Each entry must have
     a unique number in the "[]" brackets which matches
     the entry above. */
  var linkURL = new Array();
    linkURL[0]="/";
    linkURL[1]="/omnibus.html";
    linkURL[2]="/ff/";
    linkURL[3]="/images/";
    linkURL[4]="http://ectozone.proboards31.com/";
    linkURL[5]="/gbtimeline/";
    linkURL[6]="/gbfl/";
    linkURL[7]="/archive";
    linkURL[8]="/links.html";
    linkURL[9]="http://www.ectozone.com";

  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
}
