/* adrot.js File */


/* First, change the "banner_count" variable
   to the actual number of banner .gifs you plan to load. */
   
var banner_count=2;

/* Next, change the "delay" variable
   to the actual number of seconds you wish between banner loads. */
   
var delay=15;



var isn=new Array();
for (i=0;i<banner_count;i++){
 isn[i]=new Image();
}

/* Next, the banner .gif file names are loaded into the isn[x]
   banner images array. All images must be the standard size.
   You should add or delete lines to match the number of banners required.
   Note that the first .gif must appear in the isn[0] array element. */
   
isn[0].src="GenericBanners/aradiant-banner.gif";
isn[1].src="GenericBanners/aradiant-banner.gif";



var durl=new Array();
/* Finally, replace the URL's below with those of
   your banners IN THE SAME ORDER. */
   
durl[0]="http://www.oneconnect.com";
durl[1]="http://www.oneconnect.com";
