function fncImgRotate() {

	if (document.images) {		

		if (imgRotateThisImg >= aryImgRotate.length) {
			imgRotateThisImg = 0
		}

		document.imgRotate.src = aryImgRotate[imgRotateThisImg]

		imgRotateThisImg++ // INCREMENT

	  	setTimeout("fncImgRotate()", 5 * 1000)

	}

}
