adImg = new Array("/bandopub/bannierehays.gif",
                  "/bandopub/cetelem.gif",
                  "/bandopub/cefp.gif",
				  "/bandopub/orc.gif");
adUrl = new Array("http://www.haysalpha-tt.com",
                  "http://www.recrute.cetelem.fr",
                  "http://www.cefp.fr/entreprise/jeune/jeune_e.htm",
				  "http://www.laplagedesdrh.com");
curDate = new Date();
curSec = curDate.getSeconds();
adNr = curSec % adImg.length;
adTimer = 0;
function rotate(){
  adNr = adNr + 1;
  if (adNr >= adImg.length) {
    adNr = 0;
    }
  document.adDsp.src = adImg[adNr];
  adTimer = setTimeout("rotate()",8000);
}
function adJumper(){
  
  window.open(adUrl[adNr],"");
}