/* 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/ */

/*  Digimon Link Script
Established 31607f
Version 71407y */

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]="Digidex";
    links[2]="Fan Fictions";
    links[3]="Tamer Profiles";
    links[4]="Gallery";
    links[5]="Forum";
    links[6]="Timeline";
    links[7]="Links";
  

  /* 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]="http://digimon.ectozone.net";
    linkURL[1]="http://digimon.ectozone.net/codex";
    linkURL[2]="http://digimon.ectozone.net/ff";
    linkURL[3]="http://digimon.ectozone.net/profiles";
    linkURL[4]="http://digimon.ectozone.net/images/index.html";
    linkURL[5]="http://digi163.freeforums.org/";
    linkURL[6]="http://digimon.ectozone.net/timeline.html";
    linkURL[7]="http://digimon.ectozone.net/links.html";;

  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
}