// 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];
  }
}
function rotor1(){
link = new initArray(
"www.verawang-eyewear.de",
"www.celtics-hundezucht.de",
"www.cluburlaub.com",
"www.papillotehaarshop.de",
"www.gederner-seifen.de",
"www.hw-reisemobile.de",
"www.sebi-reisemobile.de",
"www.inpro-kolb.de",
"www.kachelofenplan.de",
"www.opti-mal.ws",
"www.kosmetikseminare.info",
"www.kroeger-luebeck.de",
"www.ptm-consult.de",
"www.ullimahler.de",
"www.niddatal-online.de",
"www.premiumkreuzfahrten.de",
"www.boot-fahrschulteam.de",
"www.naehzentrum-abraham.de",
"www.aqua-motion.net",
"www.paul-booch.de",
"www.opti-mal.ws"
);

image = new initArray(
"th-refs/th-verawang-eyewear.jpg",
"th-refs/th-celtics-hundezucht.jpg",
"th-refs/th-cluburlaub-com.jpg",
"th-refs/th-papillote.jpg",
"th-refs/th-gederner-seifen.jpg",
"th-refs/th-hw-reisemobile.jpg",
"th-refs/th-sebi-reisemobile.jpg",
"th-refs/th-inpro-kolb.jpg",
"th-refs/th-kachelofenplan.jpg",
"th-refs/th-opti-mal.jpg",
"th-refs/th-kosmetikschule-friedberg.jpg",
"th-refs/th-kroeger-luebeck.jpg",
"th-refs/th-ptm-consult.jpg",
"th-refs/th-ullimahler.jpg",
"th-refs/th-niddatal-online.jpg",
"th-refs/th-premiumkreuzfahrten-de.jpg",
"th-refs/th-boot-fahrschulteam.jpg",
"th-refs/th-naehzentrum-abraham.jpg",
"th-refs/th-aqua-motion.jpg",
"th-refs/th-paulbooch.jpg",
"th-refs/th-opti-mal.jpg"
);

text = new initArray(
"VeraWang-eyewear, exclusive Brillrn Vertrieb bei ulli mahler designs",
"Weisse Schäferhunde, Welpen, das Leben mit weißen Schäferhunden und ihre Zucht.",
"Planen Sie Ihren Cluburlaub ganz nach Ihren Vorstellungen - günstig, Last Minute",
"Papillote Haarshop - Haarpflege und Friseurbedaef für jedermann",
"Gederner-Seifensiederei - Gute Seifen handgemacht im Online-Shop",
"HW-Reisemobile Joint Vertriebspartnet für Sachsen - Freizeit mobil erleben!",
"SEBI-Reisemobile Joint Vertriebspartnet - Freizeit mobil erleben!",
"Ulrich Kolb Integrale Prozessberatung, Projekt- und Team-Management, Coaching",
"Planungsgruppe Stuttgart - Kamin- und Kachelofenplanung",
"Sie brauchen ein zweites Einkommen ohne Risiko? Klicken Sie hier: Opti-mal!",
"Anerkannte BFD-Kosmetikschule, private Schulungen, Kosmetik-Seminare und Fortbildungskurse",
"Fachhandel für Haustechnik / Sanitär, Heizung Klempnereibedarf",
"PTM-Consult Finanz- und Betriebswirtschaftliche Beratung",
"ulli mahler designs, exclusive Marken im Vertrieb für D/A/CH",
"Niddatal/Wetterau aktuell, immer auf Draht! Informationen der Niddataler Unternehmen und Vereine",
"Die schönsten Kreuzfahrten, Hochsee, Fluss, Clubschiff, Windjammer online buchen",
"Ausbildung für Sportbootführerschein und Sicherheitstraining",
"Nähzentrum Abraham Gießen und Gedern",
"Wasserbetten und Zubehör, seit 1986 Ihr Fachgeschäft mit Komplettservice",
"Paul Booch OHG  Familien-Meisterbetrieb, Baudekoration mit kreativen Ideen ",
"Einkommen lebenslang durch eine Homepage bei Global Domains International (GDI)! Opti-mal!"
);

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=\"' +ranlink+ '\" target=\"_blank\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');
//'<a href=\"http://' +ranlink+ '\" target=\"_blank\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"><br />'+ranlink+'</a><p>'+rantext+'</p>' 
var t='<a href=\"http:/' + '/' ;
t += ranlink ;
t += '\" target=\"_blank\"><img src=\"';
t += ranimage;
t += '\" border="0" alt=\"';
t += rantext ;
t += '\"><br />';
t += ranlink ;
t += '</a><p>';
t += rantext
t += '</p>';
document.write(t);

//Color coding..

// These are the link urls, image urls, and link names that you wish to display.
// Each is stated "url or name", . You can add and remove the urls and names by following
// that proceedure. Just make sure that the last one of each type does not contain a comma (,) at the end.
// This is the HTML for the buttons/banners. You can edit anything in here to your needs except the
//  \"' +ranlink+ '\" and \"'+ranimage+'\" and \"'+rantext+'\". 
// These three declarations insert the random link, image, and text into the HTML.
}