pridaniReklamy = new Array("images/1.jpg","images/2.jpg","images/3.jpg","images/4.jpg")
pridaniURL = new Array("http://www.dsport.cz","#","#","#")
thisAd = 0
imgCt = pridaniReklamy.length

function rotace() {
if (document.images) {
if (document.reklama.complete) {
thisAd++
if (thisAd == imgCt) {
thisAd = 0
}
document.reklama.src=pridaniReklamy[thisAd]
}
setTimeout("rotace()", 5 * 900)
}
}

function newLocation() {
document.location.href = pridaniURL[thisAd]
}
