
// (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 SlideShowSpeed1 = 6000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration1 = 2;

var Picture1 = new Array(); // don't change this
var Caption1 = new Array(); // don't change this
var showHot1 = 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!

Picture1[1] = 'EthiopiaPics/prophecy (1).jpg'
Picture1[2] = 'EthiopiaPics/prophecy (2).jpg'
Picture1[3] = 'EthiopiaPics/prophecy (3).jpg'
Picture1[4] = 'EthiopiaPics/prophecy (4).jpg'
Picture1[5] = 'EthiopiaPics/prophecy (5).jpg'
Picture1[6] = 'EthiopiaPics/prophecy3.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!

Caption1[1]  = "Many see the plagues of Egypt as a mild precursor of predicted Tribulation events.";
Caption1[2]  = "Jesus said that the Last Days will be as the Days of Lot – the time of Sodom & Gomorrah.";
Caption1[3]  = "Letters to seven churches in Revelation delivered to cities on a Roman postal route also describe seven ages of Church history.";
Caption1[4]  = "As the Great Tribulation opens, the Four Horsemen of the Apocalypse will ride.";
Caption1[5]  = "During the Millennium, the language barriers imposed at the Tower of Babel will be reversed.";
Caption1[6]  = "Our division devoted to exploring major prophetic themes of the Bible, Genesis through Revelation. Sponsors online current event commentary, resources, and live multimedia events.";







// =====================================
// Do not edit anything below this line!
// =====================================

var tss1;
var iss1;
var jss1 = 0;
var pss1 = Picture1.length-1;

var preLoad1 = new Array();
for (iss1 = 1; iss1 < pss1+1; iss1++){
preLoad1[iss1] = new Image();
preLoad1[iss1].src = Picture1[iss1];}

function control1(how1){
if (showHot1){
if (how1=="H") jss1 = 1;
if (how1=="F") jss1 = jss1 + 1;
if (how1=="B") jss1 = jss1 - 1;
if (jss1 > (pss1)) jss1=1;
if (jss1 < 1) jss1 = pss1;
if (document.all){
document.images.PictureBox1.style.filter="blendTrans(duration=2)";
document.images.PictureBox1.style.filter="blendTrans(duration=CrossFadeDuration1)";
document.images.PictureBox1.filters.blendTrans.Apply();}
document.images.PictureBox1.src = preLoad1[jss1].src;
if (document.getElementById) document.getElementById("CaptionBox1").innerHTML= Caption1[jss1];
if (document.all) document.images.PictureBox1.filters.blendTrans.Play();
}}

