	myPix = new Array("images/photos/2003/humanstar.jpg","images/photos/2003/blindfolded2.jpg","images/photos/2003/break.jpg","images/photos/2003/campbowl.jpg","images/photos/2003/canoeing.jpg","images/photos/2003/chanting.jpg","images/photos/2003/classroom.jpg","images/photos/2003/blindfolded2.jpg","images/photos/2003/matt_csd.jpg","images/photos/2003/older_nmllc.jpg","images/photos/2003/young_nmllc.jpg","images/photos/2003/sandtrap.jpg","images/photos/2003/statepark.jpg","images/photos/2003/tubing.jpg")
	
	thisPic = 0
	
	imgCt = myPix.length -1
	
	function chgSlide(direction) {
		if (document.images) {
			thisPic = thisPic + direction
			
			if (thisPic > imgCt) {
				thisPic = 0
			}
			
			if (thisPic < 0) {
				thisPic = imgCt
			}
			
			document.myPicture2003.src=myPix[thisPic]
		}
	}
	
	myPix2 = new Array("images/photos/2002/nmllc_students.jpg","images/photos/2002/auditorium.jpg","images/photos/2002/bensoukup.jpg","images/photos/2002/4girls.jpg","images/photos/2002/calisthetics.jpg","images/photos/2002/humanization.jpg","images/photos/2002/ily_signs.jpg","images/photos/2002/literacy_class.jpg","images/photos/2002/newsletter.jpg","images/photos/2002/boys.jpg","images/photos/2002/officers.jpg","images/photos/2002/pool_fun.jpg","images/photos/2002/pyramid.jpg","images/photos/2002/volleyball.jpg")
	
	thisPic2 = 0
	
	imgCt = myPix2.length -1
	
	function chgSlide2(direction) {
		if (document.images) {
			thisPic2 = thisPic2 + direction
			
			if (thisPic2 > imgCt) {
				thisPic2 = 0
			}
			
			if (thisPic2 < 0) {
				thisPic2 = imgCt
			}
			
			document.myPicture2002.src=myPix2[thisPic2]
		}
	}
	
	myPix3 = new Array("images/photos/2001/3girls.jpg","images/photos/2001/awards_ceremony.jpg","images/photos/2001/campfire.jpg","images/photos/2001/canoe.jpg","images/photos/2001/cat_n_mouse.jpg","images/photos/2001/classroom.jpg","images/photos/2001/girls_on_beach.jpg","images/photos/2001/newsletter.jpg","images/photos/2001/on_bus.jpg","images/photos/2001/playing_around.jpg","images/photos/2001/presentation.jpg","images/photos/2001/sand_mummies.jpg","images/photos/2001/spider_web.jpg","images/photos/2001/starry_dream.jpg")
	
	thisPic3 = 0
	
	imgCt = myPix3.length -1
	
	function chgSlide3(direction) {
		if (document.images) {
			thisPic3 = thisPic3 + direction
			
			if (thisPic3 > imgCt) {
				thisPic3 = 0
			}
			
			if (thisPic3 < 0) {
				thisPic3 = imgCt
			}
			
			document.myPicture2001.src=myPix3[thisPic3]
		}
	}
	
		myPix4 = new Array("images/photos/2004/1_nllc04.jpg","images/photos/2004/1_nllc02.jpg","images/photos/2004/1_nllc03.jpg","images/photos/2004/1_nllc05.jpg","images/photos/2004/1_nllc06.jpg","images/photos/2004/1_nllc07.jpg","images/photos/2004/1_nllc08.jpg","images/photos/2004/2_nllc01.jpg","images/photos/2004/2_nllc02.jpg","images/photos/2004/2_nllc04.jpg","images/photos/2004/2_nllc05.jpg","images/photos/2004/2_nllc06.jpg","images/photos/2004/2_nllc07.jpg","images/photos/2004/2_nllc08.jpg")
	
	thisPic4 = 0
	
	imgCt = myPix4.length -1
	
	function chgSlide4(direction) {
		if (document.images) {
			thisPic4 = thisPic4 + direction
			
			if (thisPic4 > imgCt) {
				thisPic4 = 0
			}
			
			if (thisPic4 < 0) {
				thisPic4 = imgCt
			}
			
			document.myPicture2004.src=myPix4[thisPic4]
		}
	}