var mypic = new Array()
	mypic[0]="images/restore/restore01.jpg";
	mypic[1]="images/restore/restore02.jpg";
	mypic[2]="images/restore/restore03.jpg";
		
	thisPic=0
	imgCt = mypic.length - 1
	
	function chgSlide(direction){
		if (document.images){
			thisPic = thisPic + direction
			if(thisPic > imgCt){
			thisPic = 0
			}
			if (thisPic < 0){
			thisPic = imgCt 
			}
			document.myPicture.src = mypic[thisPic]
		}
	}

	