function LoadImg() {
  document.getElementById("climg").innerHTML='<a href=/clients/><img src="'+rndimg+'"></a>';
  SetRndImg();
  setTimeout('LoadImg()',5000);
}
function SetRndImg() {
  arr = new Array('attenta.gif','beeline.gif','bmt.gif','cardin.gif','centrobuv.gif','cifral.gif','elt.gif','empils.gif','gobain.gif','heineken.gif','homecredit.gif','interfood.gif','kapeks.gif','mediacom.gif','mvideo.gif','nwtelecom.gif','pepsi.gif');
  rndimg = '/i/c/'+arr[Math.floor(Math.random()*arr.length)];
  IL = new Image();
  IL.src = rndimg;
}
SetRndImg();
window.onload=LoadImg;

