//<script>

window.onload = choosePic;

//var PATH = 'http://localhost/2008/robkerk/img/left/';
var PATH = 'http://www.robkerk.sk/img/left/';
var IMG_TYPE = 'jpg';

var adImages = new Array("01",
			 "02",
                         "03",
                         "04",
                         "05",
                         "06",
                         "07",
                         "08",
                         "09",
                         "10");

function rotate() {
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("slideshow").src = PATH + adImages[thisAd] + "." + IMG_TYPE;

	setTimeout("rotate()", 2 * 1000);
}


function choosePic() {
       //	thisAd = Math.floor((Math.random() * adImages.length));
        thisAd = 9;
	document.getElementById("slideshow").src = adImages[thisAd];

	rotate();
}

