// JavaScript Document
<!--
myPix = new Array("Images/views/bound for Isle of Man.jpg ",
"Images/views/Cumbria fells.jpg ",
"Images/views/fishing.jpg ",
"Images/views/from Heysham.jpg ",
"Images/views/Lakes.jpg ",
"Images/views/Rossall beach.jpg ",
"Images/views/towards Barrow.jpg ",
"Images/views/towards Bispham Blackpool.jpg ",
"Images/views/windfarm.jpg ")
		thisPic = 0
imgCt = myPix.length-1

function chgSlide(direction) {
		if (document.images){
			thisPic = thisPic + direction
			if (thisPic > imgCt) {
				thisPic = 0
			}
			if (thisPic < 0) {
				thisPic = imgCt
			}
			document.Picture.src=myPix[thisPic]
		}
}

//-->

