myImages=new Array()
myImages[0]="photos/2001Spring/01.jpg"
myImages[1]="photos/2001Spring/02.jpg"
myImages[2]="photos/2001Spring/03.jpg"
myImages[3]="photos/2001Spring/04.jpg"
myImages[4]="photos/2001Spring/05.jpg"
myImages[5]="photos/2001Spring/06.jpg"
myImages[6]="photos/2001Spring/07.jpg"
myImages[7]="photos/2001Spring/08.jpg"
imagecounter=myImages.length-1
i=0

function first()
{
document.getElementById('imageviewer').src=myImages[0]
i=0
}

function previous()
{
if (i>0)
	{
	i--
	document.getElementById('imageviewer').src=myImages[i]
	}
}

function next()
{
if (i<imagecounter)
	{
	i++
	document.getElementById('imageviewer').src=myImages[i]
	}
}

function last()
{
document.getElementById('imageviewer').src=myImages[imagecounter]
i=imagecounter
}
