// JavaScript Document

<!-- Begin
var imgs1 = new Array(); 
var lnks1 = new Array(); 
var alt1 = new Array(); 

imgs1[0]="/images/bannerad/teacardanimate.gif"; 
lnks1[0]="http://www.joshua24.com/ecards/FirstUMCFortSmithAR/index.shtml"; 
alt1[0]="Send An E Card Greeting! Christian E-cards for Everyone";

imgs1[1]="/images/bannerad/changingTheWorld.gif"; 
lnks1[1]="/worship/"; 
alt1[1]="First United Methodist Church of Fort Smith - Changing the world - one life at a time.";

imgs1[2]="/images/bannerad/umc_people.gif"; 
lnks1[2]="http://www.umc.org/"; 
alt1[2]="New to the United Methodist Church? Learn more at www.UMC.org";

imgs1[3]="/images/bannerad/fumc_bookstore.jpg"; 
lnks1[3]="http://www.cokesbury.com/default.aspx?VSL=1626";
alt1[3]="FUMC Bookstore by Cokesbury";

imgs1[4]="/images/bannerad/stephen_ministry.jpg"; 
lnks1[4]="/stephenministry/"; 
alt1[4]="We are a Stephen Ministry Congregation";

var currentAd1 = 0
var imgCt1 = 5 // Change this number to the count of the banners above. 
function cycle1() {
  currentAd1++
  if (currentAd1 == imgCt1) {
    currentAd1 = 0
  }
  document.adBanner1.src=imgs1[currentAd1]
  document.adBanner1.alt=alt1[currentAd1]
  adLink1.href=lnks1[currentAd1]
  setTimeout("cycle1()",8 * 1000)
}
// End -->