<!--
thisPic = 0
imgCt = images.length -1
function chgSlide(direction){
	if (document.images) {
		thisPic = thisPic + direction
		if (thisPic > imgCt) {
			thisPic = 0
		}
		if (thisPic < 0){
			thisPic = imgCt
		}
		document.chgme.src= images[thisPic].src
	}
}
// -->

