
// (C) 2003 by CodeLifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 6000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 2;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this
var showHot = false;       // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = 'EthiopiaPics/ethiopia (50).jpg';
Picture[2]  = 'EthiopiaPics/ethiopia (51).jpg';
Picture[3]  = 'EthiopiaPics/ethiopia (52).jpg';
Picture[4]  = 'EthiopiaPics/ethiopia (53).jpg';
Picture[5]  = 'EthiopiaPics/ethiopia (54).jpg';
Picture[6]  = 'EthiopiaPics/ethiopia (55).jpg';
Picture[7]  = 'EthiopiaPics/ethiopia (56).jpg';
Picture[8]  = 'EthiopiaPics/ethiopia (34).gif';
// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "Dr. Blair with our 1350 missionaries during a Foundation-sponsored training session.";
Caption[2]  = "Dr. Blair began training leaders of the Underground Church in 1991, following the fall of Communism in Ethiopia. ";
Caption[3]  = "Dr. Blair and Interpreter";
Caption[4]  = "Village believers face extreme personal persecution, and often new church buildings are burned to the ground by Moslem opposition.";
Caption[5]  = "Benishangul-Gumuz is the most primitive and poverty-stricken region of Ethiopia.";
Caption[6]  = "Humanitarian efforts – water wells, education, even a new hospital – are also high Blair Foundation priorities. ";
Caption[7]  = "In the past five years, friends of the Blair Foundation have sponsored the planting of 1311 new evangelical churches in a remote region of Ethiopia. ";
Caption[8]  = "Our answer to a modern-day Macedonian Call issued in 1991 by Christians in post-communist Ethiopia. Sponsors native missionaries and church planting, training, and humanitarian efforts.";


// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function control(how){
if (showHot){
if (how=="H") jss = 1;
if (how=="F") jss = jss + 1;
if (how=="B") jss = jss - 1;
if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}}
