// 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/toggo-music-24/";
banner_url="http://www.mix1.de/cdtipp1.jpg";
width="440";
height="200";
}


if (ad==2) {
link_url="http://www.sampler1.de/various-artists/80s-revolution-disco-fox-vol-1/";
banner_url="http://www.mix1.de/cdtipp2.jpg";
width="440";
height="200";
}

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

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

if (ad==5) {
link_url="http://www.artist-area.de/onerepublic/all-the-right-moves/";
banner_url="http://www.mix1.de/cdtipp5.jpg";
width="440";
height="200";
} 
 
if (ad==6) {
link_url="http://www.artist-area.de/rihanna/rude-boy/";
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
}

