<!-- Hide from old browsers

myPix = new Array("sandwich_making.jpg","sandwich_making2.jpg","serving_sandwiches.jpg","serving_soup.jpg","serving_soup2.jpg","inkitchen.jpg","knights_cooking.jpg","inserviceroom.jpg","doorisopen.jpg")
myPix2 = new Array("pancakes1.jpg","pancakes2.jpg","pancakes3.jpg")
myPix3 = new Array("soup1.jpg", "soup2.jpg", "soup3.jpg", "soup4.jpg", "soup5.jpg")

thisPic = 6
thisPic2 = 1
thisPic3 = 1

imgCt = myPix.length - 1
imgCt2 = myPix2.length - 1
imgCt3 = myPix3.length - 1

function chngSlide(direction) {
	if(document.images){
		thisPic = thisPic + direction
		if(thisPic > imgCt){
			thisPic = 0
		}
		if(thisPic < 0){
			thisPic = imgCt
		}

		document.slide.src=myPix[thisPic]
	}
}

function chngSlide2(direction) {
	if(document.images){
		thisPic2 = thisPic2 + direction
		if(thisPic2 > imgCt2){
			thisPic2 = 0
		}
		if(thisPic2 < 0){
			thisPic2 = imgCt2
		}

		document.slide2.src=myPix2[thisPic2]
	}
}

function chngSlide3(direction) {
	if(document.images){
		thisPic3 = thisPic3 + direction
		if(thisPic3 > imgCt3){
			thisPic3 = 0
		}
		if(thisPic3 < 0){
			thisPic3 = imgCt3
		}

		document.slide3.src=myPix3[thisPic3]
	}
}


//-->