// JavaScript Document
adImages = new Array("IMG/alkor.gif","IMG/fatra.gif","IMG/dek.gif");
thisAd = -1;
imgCt = adImages.length;

function chImg(){
	if(document.images){
		if(document.logo.complete){
			thisAd++;
			if(thisAd == imgCt){
				thisAd = 0;
			}
			document.logo.src = adImages[thisAd];
		}
		setTimeout("chImg()",5*1000);
	}
}