// make the array of images
				bendyList = new Array('01.jpg', '01a.jpg', '03.jpg', 'Church5.jpg','04.jpg'); 
				// daPosition will point to successive images in the bendyList array
				daPosition = -1;
				function imageFlip() {
				// increment the pointer
  				if(daPosition == bendyList.length-1) {
    				daPosition = 0;
				} else {
    				daPosition++;
				}
				// change the image
				document.images['daImg'].src = bendyList[daPosition];
				// do it again
				var timer = setTimeout('imageFlip()', 4000);
				}
