// JavaScript Document
	newpic1 = new Array('http://www.crystallake1.com/climgs/rotatepics/001.jpg',
		'http://www.crystallake1.com/climgs/rotatepics/003.jpg',
		'http://www.crystallake1.com/climgs/rotatepics/002.jpg',
		'http://www.crystallake1.com/climgs/rotatepics/007.jpg')
	
	newpic2 = new Array('http://www.crystallake1.com/climgs/rotatepics/005.jpg',
		'http://www.crystallake1.com/climgs/rotatepics/004.jpg',
		'http://www.crystallake1.com/climgs/rotatepics/006.jpg',
		'http://www.crystallake1.com/climgs/rotatepics/008.jpg')
	
	
	thispic1 = 0
	thispic2 = 0
	imgCt1 = newpic1.length
	imgCt2 = newpic2.length
	
	function rotatepics() {
		if (document.images) {
			thispic1++
			thispic2++
			if (thispic1 == imgCt1) {thispic1 = 0}
			if (thispic2 == imgCt2) {thispic2 = 0}
			
			document.rotateablepic1.src=newpic1[thispic1]
			document.rotateablepic2.src=newpic2[thispic2]
			setTimeout("rotatepics()",4*1000)
		}
	}
	

