doba=5000
pocet = 3
rotator=0
obrsrc = new Array(pocet)
cesta =new Array(pocet)
obrsrc[0]="banner2/jagr.gif"; cesta[0]="http://www.jagrfit-sport.cz";
obrsrc[1]="banner2/levne.jpg"; cesta[1]="http://www.levne-proteiny.cz";
obrsrc[2]="banner2/kolagen.jpg"; cesta[2]="http://www.levne-proteiny.cz/hydrolyzat-kolagenu.php?num=7";
obr = new Array(pocet);
for (i=0; i < pocet; i++){
obr[i]= new Image();
obr[i].src= obrsrc[i]
}
function rotate() {
if (rotator==pocet) {rotator=0;}
document.images["obraz"].src = obrsrc[rotator];
rotator = rotator + 1
window.setTimeout('rotate();',doba);
}
function poslat() {
window.location=cesta[rotator-1];
return false;
}

