var ads = new Array(
Warning: Invalid argument supplied for foreach() in /virtual/luna211/public_html/forum/ads.php on line 28
); var ads_interval_ms = ; var ads_tid; var ads_index = 0; onload = initDocument; function initDocument() { changeAds(ads); ads_tid = setInterval(changeAds, ads_interval_ms); } function changeAds() { var data = ads[ads_index]; var anchor = document.getElementById('ads_anchor'); anchor.setAttribute('href', data['href']); anchor.firstChild.nodeValue = data['title']; ads_index ++; if(ads_index >= ads.length) { ads_index = 0; } }