// hier die Anzahl der bilder eintragen
var wie_viele = 8;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % wie_viele;
ad +=1;


/*
ab hier für die banner jedesmal 6 Angaben
Linkadresse, Bildadresse, breite, höhe
*/

 

 if (ad==1) {
link_url="http://www.artist-area.de/matthias-reim/hitbox/";
banner_url="http://www.mix1.de/cdtipp1.jpg";
width="440";
height="200";
}


if (ad==2) {
link_url="http://www.artist-area.de/loona/vamos-a-la-playa/";
banner_url="http://www.mix1.de/cdtipp2.jpg";
width="440";
height="200";
}

if (ad==3) {
link_url="http://www.artist-area.de/various-artists/bravo-hits-70/";
banner_url="http://www.mix1.de/cdtipp3.jpg";
width="440";
height="200";
}

if (ad==4) {
link_url="http://www.artist-area.de/various-artists/kontor-house-of-house-vol-10/";
banner_url="http://www.mix1.de/cdtipp4.jpg";
width="440";
height="200";
}

if (ad==5) {
link_url="http://www.artist-area.de/plan-b/the-defamation-of-strickland-banks/";
banner_url="http://www.mix1.de/cdtipp5.jpg";
width="440";
height="200";
} 
 
if (ad==6) {
link_url="http://www.artist-area.de/blind-guardian/at-the-edge-of-time/";
banner_url="http://www.mix1.de/cdtipp6.jpg";
width="440";
height="200";
}
 if (ad==7) {
link_url="http://www.musikbranchenbuch.de/";
banner_url="http://www.mix1.de/cdtipp8.jpg";
width="440";
height="200";
}
 
 if (ad==8) {
link_url="http://www.musikbranchenbuch.de/";
banner_url="http://www.mix1.de/cdtipp8.jpg";
width="440";
height="200";
}


function linkbanner() {
document.write('<center>');
document.write('<a href=\"' + link_url + '\" target=\"_top\">');
document.write('<img src=\"' + banner_url + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('border=0></a><br>');
document.write('</center>');
return
}

