
// Copyright 1996, Infohiway, Inc. (http://www.infohiway.com)
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/

function adArray() {
 for (i=0; i*2<adArray.arguments.length; i++) {
  this[i] = new Object();
  this[i].src = adArray.arguments[i*2];
  this[i].href = adArray.arguments[i*2+1];
 }
 this.length = i;
}
function getAdNum() {
 dat = new Date();
 dat = (dat.getTime()+"").charAt(8);
 if (dat.length == 1)
  ad_num = dat%ads.length;
 else
  ad_num = 0;
 return ad_num;
}
var ads = new adArray(
"images/advertorial.gif","fot2011/advertorial.pdf",
"images/waschrist.born.gif","http://www.mountaingks.org/vol1wklysermon/christmas.html",
"images/easter_banner.gif","vol1advocate/easter.html"
//"images/fot11.banner.gif","fot2011/fot.cir.pdf"
//"images/ssoc.threat.gif","pressrel/freedmday2011.pdf"
//"images/fot2010pmsge_banner.gif","http://www.mountaingks.org/pmessages/fotaddr2010.pdf",
//"images/freedomday.ad2011.gif","freedomday/freedom2011.pdf",
//"images/babyfac.gif","pressrel/prel_fri260811.html",
//"images/freedomday.circ.gif","freedomday/freedom.circular.pdf",
//"images/freedomday.ghana.gif","freedomday/freedom.ghana.pdf",
//"images/marriagepro_banner.gif","pdf/gks_marriage_procedures.pdf",
//"images/fot2010pmsge_banner.gif","http://www.mountaingks.org/pmessages/fotaddr2010.pdf",
//"images/aug10ythassmbly.gif","../youthsassmbly/aug2010.pdf",
//"images/whattruth.gif","http://www.mountaingks.org/vol1advocate/whatistruth.html",
//"images/prayers.gif","http://www.mountaingks.org/vol1wklysermon/prayers.html",
//"images/biblevevol.gif","http://www.mountaingks.org/vol2wklysermon/biblevsevolution.html",
//"images/heaven.bound.gif","http://www.mountaingks.org/fotlectures/heavenbound.html",
//"images/alive.gif","http://www.mountaingks.org/pdf/live_god.pdf",
//"images/trinity.gif","http://www.mountaingks.org/vol1advocate/isjesusgodalmighty.html",
//"images/resurrection.gif","http://www.mountaingks.org/doctrines/resurrection.html",
//"images/hell.fire.gif","http://www.mountaingks.org/vol2wklysermon/hell.html",
//"images/christian.gif","http://www.mountaingks.org/vol2wklysermon/tobeachristian.html",
//"images/gkdom.gif","http://www.mountaingks.org/doctrines/godskingdom.html",
);
var ad_num = getAdNum(); 
document.write('<A HREF="'+ads[ad_num].href+'"><IMG SRC="'+ads[ad_num].src+'" '
+'WIDTH="470" HEIGHT="170" BORDER=0 name=js_ad></A>');
link_num = document.links.length-1;
function rotateSponsor() {
 if (document.images) {
  ad_num = (ad_num+1)%ads.length;
  document.js_ad.src = ads[ad_num].src;
  document.links[link_num].href = ads[ad_num].href;
  setTimeout("rotateSponsor()",5000);
 }
}
setTimeout("rotateSponsor()",5000);
