window.onload = choosePic;

var adImages = new Array("images/vehicle_fleet01_bigger.jpg","images/serving01.jpg","images/vehicle_fleet_bigger.jpg");

function rotate() {
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("adBannerIndex").src = adImages[thisAd];

	setTimeout("rotate()", 3 * 1000);
}


function choosePic() {
	thisAd = Math.floor((Math.random() * adImages.length));
	document.getElementById("adBannerIndex").src = adImages[thisAd];
	
	rotate();
}

