function body_in() {
  (new Fader(document.getElementsByTagName("body")[0], 'in')).start();
}

function info_out() {
  var link = document.getElementById("link");
  var fin  = new Fader(link, 'in');
  var fout = new Fader(link, 'out', function() {
    link.innerHTML = "<a href=\"javascript:info_in()\">Information</a>.";
    fin.start();
  });

  fout.start();
}

function info_in() {
  var link = document.getElementById("link");
  var fin   = new Fader(link, 'in');
  var fout  = new Fader(link, 'out', function() {
    link.innerHTML = "" +
      "xzion.net was previously owned by <a href=\"javascript:leave(" +
      "'http://www.ericw.org')\">rakaur</a>. It no longer is. Now <em>" +
      "sycobuny</em> owns it. And does very little with it. Some day this " +
      "site might do something. Until then, it is merely a place-holder, a " +
      "place where the flotsam and jetsam of the internet may take refuge " +
      "from the rain.<br />" +
      "<br />" +
      "<a href=\"javascript:info_out()\">Begone</a>.";
    fin.start();
  });

  fout.start();
}

function leave(where) {
  var body = document.getElementsByTagName("body")[0];
  (new Fader(body, 'out', function() { location.href = where })).start();
}
