window.onload = rotate;

var adImages = new Array("images/bedroom1.jpg","images/bedroom2e.jpg","images/bedroom3a.jpg","images/shower_room.jpg","images/diningrooma.jpg","images/aga.jpg","images/diningtable.jpg");
var thisAd = 0;

function rotate() {
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd=0;
	}
document.getElementById("adBanner").src = adImages[thisAd];

setTimeout("rotate()", 2 * 1000);
}
