myPix = new Array("http://i.i.com.com/cnwk.1d/i/special/cnet10/10yr_lookback_1995.jpg","http://i.i.com.com/cnwk.1d/i/special/cnet10/10yr_lookback_2005.jpg")
	thisPic = 0
	imgCt = myPix.length - 1
	
	function processNext() {
		if (document.images && thisPic > 0) {
			thisPic--
			document.myPictures.src=myPix[thisPic]
			}
		}
		
	function processPrevious() {
		if (document.images && thisPic < imgCt) {
			thisPic++
			document.myPictures.src=myPix[thisPic]
			}
		}

