﻿imageSet1 = new Array("images/home_photo_01.jpg","images/home_photo_02.jpg","images/home_photo_03.jpg","images/home_photo_04.jpg","images/home_photo_05.jpg","images/home_photo_06.jpg")

thisImg1 = 0
imgCt1 = imageSet1.length

function rotate1() {
	if(document.images) {
		thisImg1++
		if(thisImg1 == imgCt1) {
			thisImg1 = 0
		}
		document.img.src=imageSet1[thisImg1]
		setTimeout("rotate1()", 8*1000)
	}
}
