// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var currentdate = 0;
var core = 0;
function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' ';
  }
}
image = new StringArray(10);
link = new StringArray(10);
image[0] = '/images/libertystart_2006_e.jpg';
image[1] = '/images/libertystart_2006_e.jpg';
image[2] = '/images/libertystart_2006_e.jpg';
image[3] = '/images/libertystart_2006_e.jpg';
image[4] = '/images/libertystart_2006_e.jpg';
image[5] = '/images/libertystart_2006_e.jpg';
image[6] = '/images/libertystart_2006_e.jpg';
image[7] = '/images/libertystart_2006_e.jpg';
image[8] = '/images/libertystart_2006_e.jpg';
image[9] = '/images/libertystart_2006_e.jpg';
link[0] = 'http://www.macrosystem.de/e/news.html';
link[1] = 'http://www.macrosystem.de/e/news.html';
link[2] = 'http://www.macrosystem.de/e/index.html';
link[3] = 'http://www.macrosystem.de/e/index.html';
link[4] = 'http://www.macrosystem.de/e/news.html';
link[5] = 'http://www.macrosystem.de/e/index.html';
link[6] = 'http://www.macrosystem.de/e/index.html';
link[7] = 'http://www.macrosystem.de/e/news.html';
link[8] = 'http://www.macrosystem.de/e/news.html';
link[9] = 'http://www.macrosystem.de/e/news.html';
var ran = 60/image.length;
function ranimage() {
  currentdate = new Date();
  core = currentdate.getSeconds();
  core = Math.floor(core/ran);
  return('<a href="'+link[core]+'"><img border="0" alt="" src="'+image[core]+'"></a>');
}