<!--
// original content taken from Nic's JavaScript Page with permission
// lack of these three lines will result in copyright infringment
// made by: Nic's JavaScript Page - http://www.javascript-page.com

var currentdate = 0;
var core = 0;

function initArray() {

this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

link = new initArray(
"https://christianaudio.com/",
"http://www.instaverse.com/",
"http://www.medi-share.org/",
"http://www.southernchristian.edu/",
"http://www.persecution.org/",
"http://www.christianmemorials.com/",
"http://www.christianmemorials.com/",
"http://www.projecthoneypot.org/",
"http://www.ifcjgifts.org/"
);

image = new initArray(
"http://banners.christianprayerwarriors.org/images/728x90/Christian-Audio-728x90.gif",
"http://banners.christianprayerwarriors.org/images/728x90/InstaVerse-728x90.gif",
"http://banners.christianprayerwarriors.org/images/728x90/Medi-Share-728x90.jpg",
"http://banners.christianprayerwarriors.org/images/728x90/Southern-Christian-University-728x90.gif",
"http://banners.christianprayerwarriors.org/images/728x90/VOM-728x90-1.gif",
"http://banners.christianprayerwarriors.org/images/728x90/christian_728x90_alt.jpg",
"http://banners.christianprayerwarriors.org/images/728x90/christian_728x90.jpg",
"http://banners.christianprayerwarriors.org/images/468x60/project_honey_pot_banner.jpg",
"http://banners.christianprayerwarriors.org/images/728x90/www_ifcjgifts_org.png"
);

text = new initArray(
"Link to Christian Audio",
"Link to Insta-Verse",
"Link to Medi-Share",
"Link to Southern Christian University",
"Link to Voice of the Martyrs",
"Link to Christian Memorials",
"Link to Christian Memorials",
"Project Honey Pot",
"International Fellowship of Christians and Jews"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranlink  = link[core];
var ranimage = image[core];
var rantext  = text[core];

document.write('<a href=\"' +ranlink+ '\" target=\"_blank\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');

//-->