<!--
var gallerylength = 0;
var stopid = 1;
var galleryposition = 1;
var gallery = new Array();

function initializeGallery(){
	for (i=1;i<=gallerylength;i++){
		gallery[i-1] = new Image(92,122);
		gallery[i-1].src = "images/photos/"+stopid+"."+i+"small.jpg";
	}
	document.thumb1.src = gallery[1].src;
	document.thumb2.src = gallery[2].src;
	document.thumb3.src = gallery[3].src;
	document.mainphoto.src = "images/photos/"+stopid+".1.jpg";
}

function scrollGallery(direction){
	var newgalleryposition = galleryposition + direction;
	var slot1, slot2, slot3;
	slot1 = newgalleryposition;
	slot2 = newgalleryposition+1;
	slot3 = newgalleryposition+2;
	if (slot1 >= gallerylength){
		slot1 = slot1 - gallerylength;
	}
	if (slot2 >= gallerylength){
		slot2 = slot2 - gallerylength;
	}
	if (slot3 >= gallerylength){
		slot3 = slot3 - gallerylength;
	}
	if (slot1 < 0){
		slot1 = slot1 + gallerylength;
	}
	if (slot2 < 0){
		slot2 = slot2 + gallerylength;
	}
	if (slot3 < 0){
		slot3 = slot3 + gallerylength;
	}
	document.thumb1.src = gallery[slot1].src;
	document.thumb2.src = gallery[slot2].src;
	document.thumb3.src = gallery[slot3].src;
	galleryposition = slot1;
}

function loadImage(photo){
	var tempphoto;
	tempphoto = document.mainphoto.src;
	document.mainphoto.src = photo.replace("small.jpg",".jpg");
}
//-->