iframecount = Math.floor(Math.random() * 1);
iframecount2 = Math.floor(Math.random() * 0);
najcount = Math.floor(Math.random() * 2);
hoffset = 150;
function cycleIframe()
{ if (1 > 0)
  { dd = document.getElementById("sideBanner" + iframecount);
    if (dd != null) dd.style.top = -1000;
    iframecount++;
    if (iframecount >= 1) iframecount = 0;
    dd = document.getElementById("sideBanner" + iframecount);
    if (dd != null) dd.style.top = 110 + hoffset;
    }
  if (0 > 0)
  { dd2 = document.getElementById("sideBannerLess" + iframecount2);
    if (dd2 != null) dd2.style.top = -1000;
    iframecount2++;
    if (iframecount2 >= 0) iframecount2 = 0;
    dd2 = document.getElementById("sideBannerLess" + iframecount2);
    if (dd2 != null) dd2.style.top = 720 + hoffset;
    }
  if (najcount == 0)
  { naj = document.getElementById("player");
    naj2 = document.getElementById("gt");
    } else 
  { naj = document.getElementById("gt");
    naj2 = document.getElementById("player");
    }
  if (naj != null && naj2 != null)
  { naj.style.zIndex = 5;
    naj2.style.zIndex = -5;
    najcount = 1 - najcount;
    }
  setTimeout("cycleIframe()", 20000);
  }
