<!-- Marshall Bowling -->
<!-- Web Site: http://www.marshallbowling.com -->
<!-- Rotating468x60SBAll.js -->

var banArray = new Array(40);
var counter = 0;
var maxBanner = 39;

banArray[0]="http://www.freechristiancontent.org/banners/468_X_60/Don't_let_the_past_hold_you_back.gif";
banArray[1]="http://www.freechristiancontent.org/banners/468_X_60/Get_a_Life.gif"; 
banArray[2]="http://www.freechristiancontent.org/banners/468_X_60/Jesus_came_to_save.gif";
banArray[3]="http://www.freechristiancontent.org/banners/468_X_60/Feed_your_faith.gif";
banArray[4]="http://www.freechristiancontent.org/banners/468_X_60/monkeys.gif";
banArray[5]="http://www.freechristiancontent.org/banners/468_X_60/tgif.gif";
banArray[6]="http://www.freechristiancontent.org/banners/468_X_60/To_forgive.gif";
banArray[7]="http://www.freechristiancontent.org/banners/468_X_60/We_become_what_we_worship.gif";
banArray[8]="http://www.freechristiancontent.org/banners/468_X_60/Words_are_windows.gif";
banArray[9]="http://www.freechristiancontent.org/banners/468_X_60/push.gif";
banArray[10]="http://freechristiancontent.org/banners/468_X_60/Almost_saved.gif"; 
banArray[11]="http://freechristiancontent.org/banners/468_X_60/Everyone_needs_to_be_loved.gif"; 
banArray[12]="http://freechristiancontent.org/banners/468_X_60/Jesus_had_a_fish_story.gif"; 
banArray[13]="http://freechristiancontent.org/banners/468_X_60/I'm_a_fool_for_Christ.gif"; 
banArray[14]="http://freechristiancontent.org/banners/468_X_60/Laughter_is_Gods_sunshine.gif"; 
banArray[15]="http://freechristiancontent.org/banners/468_X_60/Live_what_you_teach.gif"; 
banArray[16]="http://freechristiancontent.org/banners/468_X_60/rapture.gif"; 
banArray[17]="http://freechristiancontent.org/banners/468_X_60/Remind_the_devil.gif"; 
banArray[18]="http://freechristiancontent.org/banners/468_X_60/To_get_our_attention.gif"; 
banArray[19]="http://freechristiancontent.org/banners/468_X_60/Trust_and_faith.gif"; 
banArray[20]="http://freechristiancontent.org/banners/468_X_60/Earth_is_a_testing_ground.gif"; 
banArray[21]="http://freechristiancontent.org/banners/468_X_60/Every_home_is_a_school.gif"; 
banArray[22]="http://freechristiancontent.org/banners/468_X_60/God_asking_us_for_a_sign.gif"; 
banArray[23]="http://freechristiancontent.org/banners/468_X_60/Gods_family_reunion.gif"; 
banArray[24]="http://freechristiancontent.org/banners/468_X_60/Made_God_Smile.gif"; 
banArray[25]="http://freechristiancontent.org/banners/468_X_60/No_absolute_truth.gif"; 
banArray[26]="http://freechristiancontent.org/banners/468_X_60/Room_at_your_inn.gif"; 
banArray[27]="http://freechristiancontent.org/banners/468_X_60/TV_is_educational.gif"; 
banArray[28]="http://freechristiancontent.org/banners/468_X_60/Where_will_you_spend_eternity.gif"; 
banArray[29]="http://freechristiancontent.org/banners/468_X_60/Who_wants_to_be_a_Christianaire.gif"; 
banArray[30]="http://freechristiancontent.org/banners/468_X_60/Body_Piercing.gif"; 
banArray[31]="http://freechristiancontent.org/banners/468_X_60/Child_by_Child.gif"; 
banArray[32]="http://freechristiancontent.org/banners/468_X_60/Choices_have_consequences.gif"; 
banArray[33]="http://freechristiancontent.org/banners/468_X_60/Dont_count_the_days.gif"; 
banArray[34]="http://freechristiancontent.org/banners/468_X_60/GRACE.gif"; 
banArray[35]="http://freechristiancontent.org/banners/468_X_60/Hug_Minister.gif"; 
banArray[36]="http://freechristiancontent.org/banners/468_X_60/Not_ready_to_live.gif"; 
banArray[37]="http://freechristiancontent.org/banners/468_X_60/Pray_is_a_four_letter_word.gif"; 
banArray[38]="http://freechristiancontent.org/banners/468_X_60/SONny_Disposition.gif"; 
banArray[39]="http://freechristiancontent.org/banners/468_X_60/Two_Choices.gif"; 
     
function pickRandom(range) {
    if (Math.random)
        return Math.round(Math.random() * (range-1));
    else {
        var now = new Date();
        return (now.getTime() / 1000) % range;
    }
}
// Write out an IMG tag, using a randomly-chosen image name.
var counter = pickRandom(maxBanner);


function changeBanner()
{
  if(counter > maxBanner)
     counter = 0;
     document.banner.src = banArray[counter];
     counter++;
}

var timer = window.setInterval("changeBanner()", 5000);
document.write('<a href="http://freechristiancontent.org"><img src="'+banArray[counter]+'" width=468 height=60 border=0 name="banner"></a>');
