indexImages = new Array
("images/indexbanner/chatfield.jpg","images/indexbanner/acupuncture.jpg","images/indexbanner/vaccine.jpg")
indexURL = new Array
("chatfieldhealthcare.com","chatfieldhealthcare.com/alternative.html","direct.gov.uk/en/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_178842.htm")
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]
}