function adArray() {
 for (i=0; i*2<adArray.arguments.length; i++) {
  this[i] = new Object();
  this[i].src = adArray.arguments[i*2];
  this[i].href = adArray.arguments[i*2+1];
 }
 this.length = i;
}
function getAdNum() {
 dat = new Date();
 dat = (dat.getTime()+"").charAt(8);
 if (dat.length == 1)
  ad_num = dat%ads.length;
 else
  ad_num = 0;
 return ad_num;
}
 var ads = new adArray(
"http://i48.tinypic.com/nlyflt.png",
"http://www.secretwarez.net/dg_job_do_mes/15680-jdm_04_tema_super_herois.html",
"http://i49.tinypic.com/33kyt95.jpg",
"http://www.secretexperience.net/sorteios/16508-003_sorteio_vip_celular_com_tv_mp10_mini_hiphone_preto_5_0_megapixels.html",
"http://i50.tinypic.com/rcn0a1.png",
"http://www.l2revoltz.net",
"http://i48.tinypic.com/t97j0x.gif",
"http://www.equipewarez.com",
"http://img42.imageshack.us/img42/5381/l2raklionse.png",
"http://www.l2raklion.com",
"http://www.alphaservers.com.br/b2.gif",
"http://www.alphaservers.com.br",
"http://i46.tinypic.com/s0wopl.png",
"http://www.netgaming.com.br"
);

var ad_num = getAdNum(); 

document.write('<table cellpadding=0 cellspacing=1 border=0><tr><td '
+'align="left">'
+'<A href="'+ads[ad_num].href+'"><IMG SRC="'+ads[ad_num].src+'" '
+'height="130" width="600" border="0" name="js_ad"></a></td></tr></table>');

link_num = document.links.length-1;

function rotateBanner() {
 if (document.images) {
  ad_num = (ad_num+1)%ads.length;
  document.js_ad.src = ads[ad_num].src;
  document.links[link_num].href = ads[ad_num].href;
  setTimeout("rotateBanner()",25000);
 }
}
setTimeout("rotateBanner()",20000);
