/**
 * @author Josh
 */

 <script language="JavaScript">
<!--
  //  Script:       Animated Image
  //  Version:      1.0
  //  Last Updated: June 12th 1998
  //  Author:       Scott Brady
  //  Org:          HotSource HTML Help
  //  Email:        webmaster@sbrady.com
  //  Website:      http://www.sbrady.com/hotsource/

	if (document.images) {     // Preloaded images
		bcoc1 = new Image();
		bcoc1.src = "http://www.batesvillechurchofchrist.com/images/bcoc1.jpg";

		bcoc2 = new Image();
		bcoc2.src = "http://www.batesvillechurchofchrist.com/images/bcoc2.jpg";

		bcoc3 = new Image();
		bcoc3.src = "http://www.batesvillechurchofchrist.com/images/bcoc3.jpg";
	}

	function timeimgs(numb) {  // Reusable timer
		thetimer = setTimeout("imgturn('" +numb+ "')", 3000);
	}

	function imgturn(numb) {   // Reusable image turner
		if (document.images) {

			if (numb == "3") {         // This will loop the image
				document["bcoc"].src = eval("bcoc3.src");
				timeimgs('1');
			}

			else {
				document["bcoc"].src = eval("bcoc" + numb + ".src");

				timeimgs(numb = ++numb);
			}
		}
	}

// -->
</script>

