
<!-- Hide from old browsers
// Copyright © 1999 Doug Popeney
// Created by Doug Popeney (easyjava@easyjavascipt.com)
// JavaScript Made Easy!! - http://www.easyjavascript.com

	var i = 1
	images = new Array
	
	images[1] = "alpaca/alpha.jpg"
	images[2] = "alpaca/bald eagle.jpg"
	images[3] = "alpaca/come lord.jpg"
	images[4] = "alpaca/cross.jpg"
	images[5] = "alpaca/dove.jpg"
	images[6] = "alpaca/eagle.jpg"
	images[7] = "alpaca/fish.jpg"
	images[8] = "alpaca/god is love.jpg"
	images[9] = "alpaca/god you and me.jpg"
	images[10] = "alpaca/god.jpg"
	images[11] = "alpaca/house.jpg"
	images[12] = "alpaca/jesus christ.jpg"
	images[13] = "alpaca/jesus.jpg"
	images[14] = "alpaca/jesus_is_the_way.jpg"
	images[15] = "alpaca/lord_is_my_shepherd.jpg"
	images[16] = "alpaca/one-nation.gif"
	images[17] = "alpaca/our god reigns.jpg"
	images[18] = "alpaca/your word is lamp.jpg"

	description = new Array
	description[1] = "Alpha"
	description[2] = "Bald Eagle"
	description[3] = "Come Lord Jesus"
	description[4] = "Cross"
	description[5] = "Dove"
	description[6] = "Eagle"
	description[7] = "Fish"
	description[8] = "God is love"
    description[9] = "God you and me"
	description[10] = "God"
	description[11] = "House"
	description[12] = "Jesus Christ"
	description[13] = "Jesus"
	description[14] = "Jesus is the way"
	description[15] = "Lord is my Shepherd"
	description[16] = "One Nation"
	description[17] = "Our God Reigns"
	description[18] = "Your word is lamp"
	
function gallery(){
	if (i == 1){
		document.gallery.desc.value = description[1]
		document.gallery.previous.value="       "}
}
function previmg(){
	if (i != 1) {
		i --
		document.img.src = images[i];
		document.gallery.desc.value = description[i];
		document.gallery.next.value = "Next"}
	if (i == 1) {
		document.gallery.previous.value="        "}

}

function nextimg(){
	if (i != 18) {
		i ++
		document.gallery.previous.value="Previous"
		image = images[i]
		document.img.src = image
		document.gallery.desc.value = description[i];}
	if (i ==18){
		document.gallery.next.value="    ";}
}

function pickrand(){
	var imagenumber = 18 ;
	var randomnumber = Math.random() ;
	var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1;
	var randimage = images[rand1]
	document.img.src = randimage
	document.gallery.desc.value = description[rand1];
	i = rand1
	if (i == 1){
		document.gallery.previous.value="        ";}
	else {
		document.gallery.previous.value="Previous";}
	if (i == 18){
		document.gallery.next.value="    ";}
	else {
		document.gallery.next.value="Next";}
}

function firstimg(){
	i = 1
	document.img.src = images[i];
	document.gallery.desc.value = description[i];
	document.gallery.previous.value="        ";
	document.gallery.next.value="Next"
}
function lastimg(){
	i = 18
	document.img.src = images[i];
	document.gallery.desc.value = description[i];
	document.gallery.next.value="    "
	document.gallery.previous.value="Previous"
}
// -- End Hiding Here -->

