
<!--


var currentdate = 0;
var core = 0;

function initArray() {

this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

link = new initArray(
"http://www.thesacrament.net",
"http://www.thesacrament.net"
);

image = new initArray(
"http://www.thesacrament.net/graphics/07/top01.jpg",
"http://www.thesacrament.net/graphics/07/top02.jpg"
);

text = new initArray(
"The Sacrament",
"The Sacrament"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranlink  = link[core];
var ranimage = image[core];
var rantext  = text[core];

document.write('<a href="http://www.thesacrament.net"><img src=\"'+ranimage+'\" border="0"></a>');

//-->

