var banDelay = 10000; // display for 10.000 seconds each

var banners = {

banner1 : ['<a href="#"><img src="http://www.joltv.com/images/banners/728x90/free-campaign.png" width="798" height="90" border="0" alt="FREE Campaign" /></a>'

,'<a href="http://joycenter.org/scripts/cmd.php?ad=514261" target="_blank"><img src="http://www.joltv.com/images/banners/728x90/bible-reading.png" width="798" height="90" border="0" alt="Read Through the Bible" /></a>' 

,'<a href="http://joycenter.org/scripts/cmd.php?ad=543451" target="_blank"><img src="http://www.joltv.com/images/banners/728x90/marriage/i-do.png" width="798" height="90" border="0" alt="Before You Say I Do" /></a>' 

,'<a href="http://www.on2url.com/app/adtrack.asp?MerchantID=54840&AdID=537023" target="_blank"><img src="http://www.joltv.com/images/banners/728x90/ut.png" width="798" height="90" border="0" alt="Unexpected Treasures" /></a>'

,'<a href="http://joycenter.org/scripts/cmd.php?ad=542539" target="_blank"><img src="http://www.joltv.com/images/banners/728x90/htfym.png" width="798" height="90" border="0" alt="How To Fix Your Marriage" /></a>'

]

, banner2 : ['<a href="http://www.joycenter.org" target="_blank"><img src="http://www.joltv.com/images/banners/300x250/bible-read.png" width="300" height="250" border="0" alt="Reading through the Bible" /></a>'

,'<a href="http://joycenter.org/scripts/cmd.php?ad=543453" target="_blank"><img src="http://www.joltv.com/images/banners/300x250/marriage/marriage.png" width="300" height="250" border="0" alt="Reading through the Bible" /></a>'

,'<a href="http://joycenter.org/scripts/cmd.php?pid=0f0014b29fbd48aeb84277ed61bcb5d1&bn=1" target="_blank"><img src="http://www.joltv.com/images/banners/300x250/numbers.png" width="300" height="250" border="0" alt="Biblical Numerology" /></a>'

,'<a href="http://www.joycenter.org" target="_blank"><img src="http://www.joltv.com/images/banners/300x250/bible-read2.png" width="300" height="250" border="0" alt="Reading through the Bible" /></a>'

,'<a href="#" target="_blank"><img src="http://www.joltv.com/images/banners/300x250/free.png" width="300" height="250" border="0" alt="Reading through the Bible" /></a>'


]

};



// Banner Rotator

// copyright 12th October 2009 by Stephen Chapman

// http://javascript.about.com

// permission to use this Javascript on your web page is granted

// provided that all of the code below in this script (including these

// comments) is used without any alteration

var banimg = []; for (x in banners) {for (var i=banners[x].length-1; i >= 0; i--) {var b = banners[x][i].match(/<img.+?src=['"](.*?)['"]/);if (b) banimg.push(b[1]);}} for (var i = banimg.length - 1; i >= 0; i--) {var h = new Image(); h.src = banimg[i];}

function randOrd(){return (Math.round(Math.random())-0.5); }

var banlist = [];function Ban(b) {this.loc = document.getElementById(b);this.ary = banners[b];this.ary.sort(randOrd);this.cnt = -1;banlist.push(this);}function rotateBan() {for (var j = banlist.length - 1; j >= 0; j--) {var max = banlist[j].ary.length;banlist[j].cnt++;if (banlist[j].cnt >= max) banlist[j].cnt = 0;banlist[j].loc.innerHTML = banlist[j].ary[banlist[j].cnt];}setTimeout(rotateBan,banDelay);} function startBanner() {for (x in banners) {if (document.getElementById(x)) new Ban(x);} rotateBan();} 



window.onload = startBanner;










