var nBanDelais = 10;
aBannieres = new Array();
// Bannières
aBannieres[0] = new twBanniere('http://r0x.fr/','http://r0x.fr/site/ban_noel/ban.png','r0x.fr');
aBannieres[1] = new twBanniere('http://r0x.fr/','http://r0x.fr/site/ban_noel/ban.png','r0x.fr');
aBannieres[2] = new twBanniere('http://r0x.fr/','http://r0x.fr/site/ban_noel/ban.png','r0x.fr');
aBannieres[3] = new twBanniere('http://r0x.fr/','http://r0x.fr/site/ban_noel/ban.png','r0x.fr');
aBannieres[4] = new twBanniere('http://r0x.fr/','http://r0x.fr/site/ban_noel/ban.png','r0x.fr');
aBannieres[5] = new twBanniere('http://r0x.fr/','http://r0x.fr/site/ban_noel/ban.png','r0x.fr');

function twBanniere(_url,_src,_texte) {this.url=_url;this.src=_src;this.texte=_texte;}
function twRotation(){
  nBanPos=(nBanPos<nBanMax-1)?nBanPos+1:0;
  if (document.all){
    document.images["twban"].style.filter="blendTrans(duration=2)";
    document.images["twban"].style.filter="blendTrans(duration=CrossFadeDuration)";
    document.images["twban"].filters.blendTrans.Apply();
  }
  document.images["twban"].src=aBannieres[nBanPos].src;
  if (document.all) document.images["twban"].filters.blendTrans.Play();
  oTimer = setTimeout('twRotation()',nBanDelais*1000);
}
var nBanPos = 0;
var oTimer;
var nBanMax = aBannieres.length;
