var images = new Array("images/harold/preshow.jpg", 
						"images/harold/ape-cowgirl-pirate.jpg", 
						"images/harold/jason.jpg", 
						"images/harold/jason2.jpg",
						"images/harold/jason3.jpg",
						"images/harold/pirate.jpg",
						"images/harold/jason-jen.jpg",
						"images/harold/jason-jen2.jpg",
						"images/harold/vlad.jpg",
						"images/harold/vlad2.jpg",
						"images/harold/seanzombie2.jpg"
						);

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