// JavaScript Document
<!--
myPix = new Array("Images/about/'Spanish' steps.jpg ",
"Images/about/cafe with wind power.jpg ",
"Images/about/Cleveleys from air.jpg ",
"Images/about/distant views.jpg ",
"Images/about/early evening sun.jpg ",
"Images/about/exciting sports.jpg ",
"Images/about/futuristic lighting.jpg ",
"Images/about/High St from East.jpg ",
"Images/about/High St from West.jpg ",
"Images/about/new promenade.jpg ",
"Images/about/new technology.jpg ",
"Images/about/Old Cleveleys.jpg ",
"Images/about/relaxation with views.jpg ",
"Images/about/sea defence.jpg ",
"Images/about/Shopping centre.jpg ",
"Images/about/sit and have a rest.jpg ",
"Images/about/summer flowers on promenade.jpg ",
"Images/about/summer flowers.jpg ",
"Images/about/Town at night.jpg ",
"Images/about/views to the south .jpg ",
"Images/about/walking on the beach.jpg ",
"Images/about/weather beaten groin.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]
		}
}

//-->

