
 // Enter the location of the banner graphics in the array below.
 var  bannerIndexI,bannerIndexJ,bannerLocations, bannerURLs;

function initVar() {
  // Enter the location of the banner graphics in the array below.
  bannerLocations=[["Jaxter_1.gif","Jaxter_2.gif","Jaxter_3.gif","Jaxter_4.gif","Jaxter_5.gif"],["SabseBolo_1.gif","SabseBolo_2.gif","SabseBolo_2.gif","SabseBolo_4.gif","SabseBolo_5.gif"]];

  // Enter the URL's to which the banners will link to in the array below.
  bannerURLs = new Array("http://www.jaxtr.com","http://www.sabsebolo.com/");
  
  bannerIndexI=(new Date()).getTime() % bannerLocations.length ;
  bannerIndexJ=(new Date()).getTime() % bannerLocations[0].length;
  
  if(bannerIndexI == bannerLocations.length-1 ){bannerIndexI-=1;}
  
  document.getElementById('add1').innerHTML="<ul id='advertise-login'><li><div class='network-label'><a   href='"+bannerURLs[bannerIndexI]+"' target='_blank'><img  src='imgs/banners/koolim_banner_"+bannerLocations[bannerIndexI][bannerIndexJ]+"'   align='left' border='0' /></a></div></li></ul>";
  document.getElementById('add2').innerHTML="<ul id='advertise-login'><li><div class='network-label'><a   href='"+bannerURLs[bannerIndexI+1]+"' target='_blank'><img  src='imgs/banners/koolim_banner_"+bannerLocations[bannerIndexI+1][bannerIndexJ]+"'   align='left' border='0' /></a></div></li></ul>";
	
	//alert("bannerIndex , textIndex"+bannerIndex +" ,"+ textIndex);
}
