// 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.sampler1.de/various-artists/clubland-vol-5/";
banner_url="http://www.mix1.de/cdtipp1.jpg";
width="440";
height="200";
}


if (ad==2) {
link_url="http://www.sampler1.de/various-artists/bounce-vol-4/";
banner_url="http://www.mix1.de/cdtipp2.jpg";
width="440";
height="200";
}

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

if (ad==4) {
link_url="http://www.artist-area.de/juergen-drews/schlossallee/";
banner_url="http://www.mix1.de/cdtipp4.jpg";
width="440";
height="200";
}

if (ad==5) {
link_url="http://www.artist-area.de/massive-attack/heligoland/";
banner_url="http://www.mix1.de/cdtipp5.jpg";
width="440";
height="200";
} 
 
if (ad==6) {
link_url="http://www.artist-area.de/stromae/alors-on-danse/";
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
}

