var images = new Array("images/todd_charron1.jpeg", 
						"images/todd_charron2.jpeg", 
						"images/todd_charron3.jpeg", 
						"images/todd_charron4.jpeg", 
						"images/todd_charron5.jpeg", 
						"images/todd_charron6.jpeg"
						);

var widths = new Array("287",
						"287",
						"361",
						"287",
						"358",
						"287"
						);
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";
}