// 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];
  }
}

link = new initArray(
"http://www.bundle.handy-netz24.de",
"http://www.bundle.handy-netz24.de",
"http://www.bundle.handy-netz24.de",
"http://www.bundle.handy-netz24.de",
"http://www.bundle.handy-netz24.de",
"http://www.bundle.handy-netz24.de",
"http://www.bundle.handy-netz24.de",
"http://www.bundle.handy-netz24.de"


);

image = new initArray(
"http://shop.talkplus.de/__sys_images/images/geraet/1024_l.jpg",
"http://shop.talkplus.de/__sys_images/images/geraet/999_l.jpg",
"http://shop.talkplus.de/__sys_images/images/geraet/1021_l.jpg",
"http://shop.talkplus.de/__sys_images/images/geraet/1022_l.jpg",
"http://shop.talkplus.de/__sys_images/images/geraet/1019_l.jpg",
"http://shop.talkplus.de/__sys_images/images/geraet/992_l.jpg",
"http://shop.talkplus.de/__sys_images/images/geraet/881_l.jpg",
"http://shop.talkplus.de/__sys_images/images/geraet/821_l.jpg"


);

text = new initArray(
"Bundle Netbook Asus Eee PC 904HD",
"Bundle Netbook Asus Eee PC 904HD",
"Bundle Notebook + Sony Ericsson",
"Bundle Notebook + Wii",
"Bundle Netbook Samsung NC10",
"Bundle Netbook Samsung NC10",
"Bundle PC-System Vista + LCD",
"Nokia N95 8GB + 1208"



);

width = new initArray(
		"200",
		"200",
		"200",
		"200",
		"200",
		"200",
		"200",
		"200"

);

height = new initArray(
		"270",
		"270",
		"270",
		"270",
		"270",
		"270",
		"270",
		"270"
);

var currentdate = new Date();
var core = currentdate.getSeconds()%image.length;
var ranlink  = link[core];
var ranimage = image[core];
var rantext  = text[core];
var ranwidth = width [core];
var ranheight = height [core];

document.write('<a href=\"' +ranlink+ '\"><img src=\"'+ranimage+'\" width=\"'+ranwidth+'\" width=\"'+ranheight+'\" border="0" alt=\"'+rantext+'\"><br>\"'+rantext+'\"</a>');

