indexImages = new Array
("images/indexbanner/chatfield.jpg","images/indexbanner/acupuncture.jpg","images/indexbanner/screening.jpg")
indexURL = new Array
("chatfieldhealthcare.com","chatfieldhealthcare.com/alternative.html","chatfieldhealthcare.com/services1.html")
thisSlide = 0
imgCt = indexImages.length

function rotate() {
if (document.images) {
thisSlide++
if (thisSlide == imgCt) {
thisSlide = 0
}

document.indexBanner.src=indexImages [thisSlide]
setTimeout("rotate()", 7 * 1000)
}
}

function newLocation() {
document.location.href = "http://www." + indexURL[thisSlide]
}
