// JavaScript Document var imgMain = new Array(); imgMain[0] = "url(images/ads-home/home_6.jpg)"; imgMain[1] = "url(images/ads-home/home_5.jpg)"; imgMain[2] = "url(images/ads-home/home_4.jpg)"; imgMain[3] = "url(images/ads-home/home_3.jpg)"; var imgBase = new Array(); imgBase[0] = "images/home/base_6.gif"; imgBase[1] = "images/home/base_5.gif"; imgBase[2] = "images/home/base_4.gif"; imgBase[3] = "images/home/base_3.gif"; var t; var c = 2; function timedCount() { document.getElementById('newoffer').style.backgroundImage= imgMain[c]; document.getElementById('base_ad').src= imgBase[c]; document.getElementById('base_ad').style.backgroundImage= imgMain[c]; c=c+1; if (c> 5) { c = 0; } t=setTimeout("timedCount()",15000); }