adImages = new Array("img/logo/esf_eu.gif", "img/logo/adra.gif", "img/logo/praha.gif", "img/logo/tmobile-fond.gif", "img/logo/logo_MVCR.gif", "img/logo/logoMPSV.gif", "img/logo/spacer.gif")
quote = new Array("esf_eu","adra","praha","com", "cic", "mvcr", "mpsv", "spacer")
adURL = new Array ("www.esfcr.cz", "www.nadace-adra.cz", "www.praha-mesto.cz", "www.t-mobile.cz", "www.mvcr.cz", "www.mpsv.cz", "www.meta-os.cz")

var thisAd = 0
var imgCt = adImages.length
var quoteCt = quote.length

function rotatelogos() {
  if (document.images) {
    if (document.cycle.complete) {
	  thisAd++
	  if (thisAd == imgCt && thisAd == quoteCt) {
	    thisAd = 0
	  }
	  document.cycle.src = adImages[thisAd];
      window.defaultStatus = quote[thisAd];
	}
	setTimeout("rotatelogos()", 4000)
  }
}

function rotateLink() { window.parent.location.href = "http://" + adURL[thisAd] }