/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/

 bannerImg[*]="imageRotate/*.jpg";

*/

var bannerImg = new Array();
  // Enter the names of the images below
  bannerImg[0]="imageRotate/Pedernales Falls.jpg";
  bannerImg[1]="imageRotate/Barton Springs Fault.jpg";
  bannerImg[2]="imageRotate/Erock&sign.jpg";
  bannerImg[3]="imageRotate/Hoovers Point Cambrian Riley Fm.jpg";
  bannerImg[4]="imageRotate/Sansom Biz card.jpg";
  bannerImg[5]="imageRotate/1901fossils.jpg";
	bannerImg[6]="imageRotate/agsfield.jpg";
	bannerImg[7]="imageRotate/agsposter.jpg";
	bannerImg[8]="imageRotate/austinquad.jpg";
	bannerImg[9]="imageRotate/cambrianhickory.jpg";
	bannerImg[10]="imageRotate/canyondam.jpg";
	bannerImg[11]="imageRotate/canyonlake.jpg";
	bannerImg[12]="imageRotate/colorador.jpg";
	bannerImg[13]="imageRotate/corbula.jpg";
  	bannerImg[14]="imageRotate/cripplecrawfish.jpg";
	bannerImg[15]="imageRotate/education.jpg";
	bannerImg[16]="imageRotate/elginclay.jpg";
	bannerImg[17]="imageRotate/gneissmason.jpg";
	bannerImg[18]="imageRotate/hamilton.jpg";
	bannerImg[19]="imageRotate/maps.jpg";
	bannerImg[20]="imageRotate/millenium.jpg";
	bannerImg[21]="imageRotate/monopleurid.jpg";
  	bannerImg[22]="imageRotate/narrowsblanco.jpg";
	bannerImg[23]="imageRotate/nonconformllano.jpg";
	bannerImg[24]="imageRotate/pilotknob.jpg";
	bannerImg[25]="imageRotate/saltpepper.jpg";
	bannerImg[26]="imageRotate/sinkhole.jpg";
	bannerImg[27]="imageRotate/westcave.jpg";
	bannerImg[28]="imageRotate/westcavepreserve.jpg";
	bannerImg[29]="imageRotate/beg.jpg";
  
var newBanner = 0;
var totalBan = bannerImg.length;

function cycleBan() {
  newBanner++;
  if (newBanner == totalBan) {
    newBanner = 0;
  }
  document.banner.src=bannerImg[newBanner];
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleBan()", 6*1000);
}
window.onload=cycleBan;