rtImages1 = new Array("http://trentonmo.com/SiteImages/rotator1a.jpg", "http://trentonmo.com/SiteImages/rotator1b.jpg", "http://trentonmo.com/SiteImages/rotator1c.jpg", "http://trentonmo.com/SiteImages/rotator1d.jpg", "http://trentonmo.com/SiteImages/rotator1e.jpg", "http://trentonmo.com/SiteImages/rotator1f.jpg", "http://trentonmo.com/SiteImages/rotator1g.jpg", "http://trentonmo.com/SiteImages/rotator1h.jpg");
rtImages2 = new Array("http://trentonmo.com/SiteImages/rotator2a.jpg", "http://trentonmo.com/SiteImages/rotator2b.jpg", "http://trentonmo.com/SiteImages/rotator2c.jpg", "http://trentonmo.com/SiteImages/rotator2d.jpg", "http://trentonmo.com/SiteImages/rotator2e.jpg", "http://trentonmo.com/SiteImages/rotator2f.jpg", "http://trentonmo.com/SiteImages/rotator2g.jpg", "http://trentonmo.com/SiteImages/rotator2h.jpg");
rtImages3 = new Array("http://trentonmo.com/SiteImages/rotator3a.jpg", "http://trentonmo.com/SiteImages/rotator3b.jpg", "http://trentonmo.com/SiteImages/rotator3c.jpg", "http://trentonmo.com/SiteImages/rotator3d.jpg", "http://trentonmo.com/SiteImages/rotator3e.jpg", "http://trentonmo.com/SiteImages/rotator3f.jpg", "http://trentonmo.com/SiteImages/rotator3g.jpg", "http://trentonmo.com/SiteImages/rotator3h.jpg");
thisImg = 0;
imgCt = rtImages1.length;

function rotate1() {
	if (document.images) {
		thisImg++;
		if (thisImg == imgCt) {
			thisImg = 0;
		}
		document.img1.src=rtImages1[thisImg];
		setTimeout("rotate2()", 2 * 1000);
	}
};	

function rotate2() {
	if (document.images) {
		thisImg;
		if (thisImg == imgCt) {
			thisImg = 0;
		}
		document.img2.src=rtImages2[thisImg];
		setTimeout("rotate3()", 2 * 1000);
	}
};	

function rotate3() {
	if (document.images) {
		thisImg;
		if (thisImg == imgCt) {
			thisImg = 0;
		}
		document.img3.src=rtImages3[thisImg];
		setTimeout("rotate1()", 2 * 1000);
	}
};
		
