// 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(
"http://fluorine1.ru/images/1_pic_101.jpg",
"http://fluorine1.ru/images/1_pic_102.jpg",
"http://fluorine1.ru/images/1_pic_103.jpg",
"http://fluorine1.ru/images/1_pic_104.jpg",
"http://fluorine1.ru/images/1_pic_105.jpg",
"http://fluorine1.ru/images/1_pic_106.jpg"
);

text = new initArray(
"We",
"we"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranlink  = link[core];
var ranimage = image[core];
var rantext  = text[core];

document.write('<img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\">');


