/*=============================================================*
 Single-page image navigation
 Author: Michael Barrish 02/06/2004
 http://bluearchermedia.com
 I suffered making all this
 Do with it what you will
 *=============================================================*/
 

numb = 1

function loadimage(imgName, imgNum, direction, imgTot, prev, next) {
	
	if (document.getElementById){
		numb = numb + direction
		if (imgNum < 1 && numb < 1)
			{numb = document.location.href = prev}
		if (imgNum < 1 && numb > imgTot)
			{numb = document.location.href = next}
		if (imgNum < 1 && numb <= imgTot)
			{document.large.src = "/images/" +imgName+ "_l" +numb+ ".jpg"}
		if (imgNum >= 1)
			{numb = imgNum;
			document.large.src = "/images/" +imgName+ "_l" +numb+ ".jpg"}
	}
}
