// JavaScript Document

{
b1off = new Image();
b1off.src = "images/home-off.gif";
b1on = new Image();
b1on.src = "images/home-on.gif";

b2off = new Image();
b2off.src = "images/events-off.gif";
b2on = new Image();
b2on.src = "images/events-on.gif";

b3off = new Image();
b3off.src = "images/purpose-off.gif";
b3on = new Image();
b3on.src = "images/purpose-on.gif";

b4off = new Image();
b4off.src = "images/facilities-off.gif";
b4on = new Image();
b4on.src = "images/facilities-on.gif";

b5off = new Image();
b5off.src = "images/photos-off.gif";
b5on = new Image();
b5on.src = "images/photos-on.gif";

b6off = new Image();
b6off.src = "images/links-off.gif";
b6on = new Image();
b6on.src = "images/links-on.gif";

b7off = new Image();
b7off.src = "images/downloads-off.gif";
b7on = new Image();
b7on.src = "images/downloads-on.gif";

b8off = new Image();
b8off.src = "images/salvation-off.gif";
b8on = new Image();
b8on.src = "images/salvation-on.gif";

}
function imageChange(imageID,imageName){ 


{
document.images[imageID].src = eval(imageName + ".src");
}

}
//-->
<!-- Rotate Pictures
{
   setNum=1;
   setSpeed=6000;

   Pic=new Array();   
   Pic[0]=new Image();
   Pic[0].src="images/PicBlock.gif";
   Pic[1]=new Image();
   Pic[1].src="images/Pic01.gif";
   Pic[2]=new Image();
   Pic[2].src="images/Pic02.gif";
   Pic[3]=new Image();
   Pic[3].src="images/Pic03.gif";
   Pic[4]=new Image();
   Pic[4].src="images/Pic04.gif";
   Pic[5]=new Image();
   Pic[5].src="images/Pic05.gif";
   Pic[6]=new Image();
   Pic[6].src="images/Pic06.gif";
   Pic[7]=new Image();
   Pic[7].src="images/Pic07.gif";
   }

function rotateSet(){

if (setNum<Pic.length-1) setNum++;
   else setNum=1;
   document.set.src=Pic[setNum].src;
   setTimeout('rotateSet()', setSpeed);
}
