<!--
// original content taken from Nic's JavaScript Page with permission
// lack of these three lines will result in copyright infringment
// made by: Nic's JavaScript Page - http://www.javascript-page.com

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];
  }
}

image = new initArray(
"aniloes-header-01.jpg",
"aniloes-header-04.jpg",
"aniloes-header-07.jpg",
"aniloes-header-12.jpg"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranimage = image[core];

document.write('<a href=\"http://www.anilos.com/hardcore.html?id=10667&c=banners\"><img src=\"http://triplexcities.net/mature/images/'+ranimage+'\" border="0" width=\"770px\"></a>');

//-->