<!-- hide script

adImages = new Array("banners/advertise.gif","banners/whiteswan3.gif","banners/kelso taxis.gif","banners/whitebanner.gif")
adURL = new Array("kelso-online.co.uk/advertising.htm","whiteswan-kelso.com","kelso-online.co.uk/kelso taxis.htm","kelso-online.co.uk/TheWhiteSwanSelf-CateringApartment.htm")
thisAd = 0
imgCt = adImages.length

function rotate() {
if (document.images) {
if (document.adBanner.complete) {
thisAd++
if(thisAd == imgCt) {
thisAd = 0
}
document.adBanner.src=adImages[thisAd]
}
setTimeout("rotate()", 10 * 1000)
}
}
function newLocation() {
document.location.href = "http://www." + adURL[thisAd]
}
// End hiding -->