// JavaScript Document
<!-- Adapted Friday, June 16, 2006 13:26 PM by Little d Technology in La Pine Oregon -->

var galArray = new Array(); //for images/gallery, increase size as necessary

var count=1

if(document.images) //pre-load all gallery images
{
	galArray[1] =  "images/gallery/" + "1lapine.jpg"
	galArray[2] =  "images/gallery/" + "antelope.jpg"
	galArray[3] =  "images/gallery/" + "chipmunk.jpg"
	galArray[4] =  "images/gallery/" + "collard.jpg"
	galArray[5] =  "images/gallery/" + "coyote1.jpg"
	galArray[6] =  "images/gallery/" + "coyote2.jpg"
	galArray[7] =  "images/gallery/" + "deer1.jpg"
	galArray[8] =  "images/gallery/" + "deer2.jpg"
	galArray[9] =  "images/gallery/" + "deer3.jpg"
	galArray[10] = "images/gallery/" + "duck.jpg"
	galArray[11] = "images/gallery/" + "dutchoven.jpg"
	galArray[12] = "images/gallery/" + "dutchoven2.jpg"
	galArray[13] = "images/gallery/" + "dutchoven3.jpg"
	galArray[14] = "images/gallery/" + "dutchoven4.jpg"
	galArray[15] = "images/gallery/" + "elk.jpg"
	galArray[16] = "images/gallery/" + "fireworks1.jpg"
	galArray[17] = "images/gallery/" + "fireworks2.jpg"
	galArray[18] = "images/gallery/" + "fireworks3.jpg"
	galArray[19] = "images/gallery/" + "fireworks4.jpg"
	galArray[20] = "images/gallery/" + "fireworks5.jpg"
	galArray[21] = "images/gallery/" + "flower1.jpg"
	galArray[22] = "images/gallery/" + "flower2.jpg"
	galArray[23] = "images/gallery/" + "flower3.jpg"
	galArray[24] = "images/gallery/" + "flower4.jpg"
	galArray[25] = "images/gallery/" + "goldenmantle.jpg"
	galArray[26] = "images/gallery/" + "goldenmantle2.jpg"
	galArray[27] = "images/gallery/" + "goose.jpg"
	galArray[28] = "images/gallery/" + "hawk.jpg"
	galArray[29] = "images/gallery/" + "horse1.jpg"
	galArray[30] = "images/gallery/" + "horse2.jpg"
	galArray[31] = "images/gallery/" + "horse3.jpg"
	galArray[32] = "images/gallery/" + "otter.jpg"
	galArray[33] = "images/gallery/" + "otter2.jpg"
	galArray[34] = "images/gallery/" + "parade1.jpg"
	galArray[35] = "images/gallery/" + "parade2.jpg"
	galArray[36] = "images/gallery/" + "parade3.jpg"
	galArray[37] = "images/gallery/" + "parade4.jpg"
	galArray[38] = "images/gallery/" + "parade5.jpg"
	galArray[39] = "images/gallery/" + "quail.jpg"
	galArray[40] = "images/gallery/" + "redsquirrel.jpg"
	galArray[41] = "images/gallery/" + "redwing.jpg"
	galArray[42] = "images/gallery/" + "robin.jpg"
	galArray[43] = "images/gallery/" + "rodeo1.jpg"
	galArray[44] = "images/gallery/" + "rodeo2.jpg"
	galArray[45] = "images/gallery/" + "rodeo3.jpg"
	galArray[46] = "images/gallery/" + "rodeo4.jpg"
	galArray[47] = "images/gallery/" + "rodeo5.jpg"
	galArray[48] = "images/gallery/" + "squirrel.jpg"
	galArray[49] = "images/gallery/" + "squirrel2.jpg"
	
}

function changeGallery() //picture changer function
{
	if (count>49)
	count=1

	document.gallery.src = galArray[count++];


}

function standby()
{
    document.gallery.src = galArray[1];
}


//calls the changeGallery() function every x seconds
//change the timer as necessary (minutes * 60000) or (seconds * 1000)
var timer2 = window.setInterval("changeGallery()", 2000);


