var images = new Array("images/gander/gander01.jpeg", 
						"images/gander/gander02.jpeg", 
						"images/gander/gander03.jpeg", 
						"images/gander/gander04.jpeg"
						);

var widths = new Array("490",
						"490",
						"490",
						"490"
						);
var spot = 0;

function viewImage(num) {
	var i;
	var d;
	
	if (document.getElementById) { 
		i = document.getElementById("largepic");
		d = document.getElementById("img-shadow");
	}
	else if (document.all && !document.getElementById) {
		i = document.all("largepic");
		d = document.all("img-shadow");
	}
	i.src = images[num];
	d.style.width = widths[num] + "px";
	spot = num;
	scroll(0,0);
}

function nextImage() {
	if (document.getElementById) { 
		i = document.getElementById("largepic");
		d = document.getElementById("img-shadow");
	}
	else if (document.all && !document.getElementById) {
		i = document.all("largepic");
		d = document.all("img-shadow");
	}
	spot += 1;
	if (spot >= images.length) {
		spot = 0;
	}
	i.src = images[spot];
	d.style.width = widths[spot] + "px";
}

function previousImage() {
	if (document.getElementById) { 
		i = document.getElementById("largepic");
		d = document.getElementById("img-shadow");
	}
	else if (document.all && !document.getElementById) {
		i = document.all("largepic");
		d = document.all("img-shadow");
	}
	spot -= 1;
	if (spot < 0) {
		spot = images.length - 1;
	}
	i.src = images[spot];
	d.style.width = widths[spot] + "px";
}
