 	<!--
function changeto(source, highlightcolor, source2, othercolor)
{
	source.style.backgroundColor=highlightcolor;  
    source2.style.color=othercolor;  
}
function create() {
        this.width = ''
        this.height = ''
        this.src = ''
        this.href = ''
        this.border = ''
        this.mouseover = ''
        this.sponsor = ''
}

function random(n)  {
        var js_mult1=3141
        var js_mult2=5821
        var js_m1=100000000
        var js_m2=10000
        var js_iseed=0
        var js_iseed1=0
        var js_iseed2=0

        if (js_iseed == 0)  {
                now = new Date()
                js_iseed = now.getHours() + now.getMinutes() * 60 + now.getSeconds() * 3600
        }

        js_iseed1 = js_iseed / js_m2
        js_iseed2 = js_iseed % js_m2
        var tmp = (((js_iseed2 * js_mult1 + js_iseed1 * js_mult2) % js_m2) * js_m2 + (js_iseed2 * js_mult2)) % js_m1
        js_iseed = (tmp + 1) % js_m1
        return (Math.floor((js_iseed/js_m1) * n))
}


var numberOfAds = 11  //number or ads you want to display


ads = new Array()

for(var i=1; i<=numberOfAds; i++) { ads[i] = new create() }



ads[1].width = "350"
ads[1].height = "110"
ads[1].src = "http://www.gospelflava.com/images/ads/learngospelmusic.gif"
ads[1].href = "http://www.churchartist.com"
ads[1].border = "0"
ads[1].mouseover = "Learn Gospel Music!"

ads[2].width = "350"
ads[2].height = "110"
ads[2].src = "http://www.gospelflava.com/images/ads/bonnerfideradio.jpg"
ads[2].href ="http://www.getbonnerfide.com"  
ads[2].border = "0" 
ads[2].mouseover = "Get Bonnerfide Radio "

ads[3].width = "350"
ads[3].height = "110"
ads[3].src = "http://www.gospelflava.com/images/ads/dorindaclarkcolesurvive.gif"
ads[3].href = "http://www.amazon.com/I-Survived-Dorinda-Clark-Cole/dp/B005CAAX64/ref=sr_1_10?ie=UTF8&qid=1314202734&sr=8-10"  
ads[3].border = "0" 
ads[3].mouseover = "Dorinda Clark-Cole "

ads[4].width = "350"
ads[4].height = "110"
ads[4].src = "http://www.gospelflava.com/images/ads/genitapugh.gif"
ads[4].href ="http://www.amazon.com/My-Purpose-Genita-Pugh/dp/B005TZFYK2/ref=sr_1_1?s=music&ie=UTF8&qid=1324413840&sr=1-1"   
ads[4].border = "0" 
ads[4].mouseover = "Genita Pugh"

ads[5].width = "350"
ads[5].height = "110"
ads[5].src = "http://www.gospelflava.com/images/ads/lutherbarnes-anotherlevel.gif"
ads[5].href ="http://www.amazon.com/Another-Level-Luther-Barnes/dp/B006H3MJDA/ref=br_nf_4_3?pf_rd_p=506462831&pf_rd_s=center-6&pf_rd_t=101&pf_rd_i=2231705011&pf_rd_m=ATVPDKIKX0DER&pf_rd_r=0HJBHQ64Q9BCC67XBBX4"
ads[5].border = "0" 
ads[5].mouseover = "Luther Barnes and the Sunset Jubilaires"

ads[6].width = "350"
ads[6].height = "110"
ads[6].src = "http://www.gospelflava.com/images/ads/jessicareedyheart.gif"
ads[6].href ="http://itunes.apple.com/us/album/from-the-heart/id460472550"
ads[6].border = "0" 
ads[6].mouseover = "Jessica Reedy"

ads[7].width = "350"
ads[7].height = "110"
ads[7].src = "http://www.gospelflava.com/images/ads/maurettebrownclarkvictory.gif"
ads[7].href ="http://www.walmart.com/ip/17688814"
ads[7].border = "0" 
ads[7].mouseover = "Maurette Brown Clark"

ads[8].width = "350"
ads[8].height = "110"
ads[8].src = "http://www.gospelflava.com/images/ads/williammcdowellarise.gif"
ads[8].href ="https://www.amazon.com/dp/B005OSFRPG/ref=as_li_ss_til?tag=wwwlightstree20&camp=0&creative=0&linkCode=as4&creativeASIN=B005OSFRPG&adid=07EWN9NMTTA79QQQ1P5K&"
ads[8].border = "0" 
ads[8].mouseover = "William McDowell "

ads[9].width = "350"
ads[9].height = "110"
ads[9].src = "http://www.gospelflava.com/images/ads/amberbullock.jpg"
ads[9].href ="http://www.amazon.com/gp/product/B005ZV9WPI/"
ads[9].border = "0" 
ads[9].mouseover = "Amber Bullock "

ads[10].width = "350"
ads[10].height = "110"
ads[10].src = "http://www.gospelflava.com/images/ads/jamesfortuneidentity.gif"
ads[10].href ="http://www.amazon.com/Identity-James-Fortune-FIYA/dp/B006CLHCOS/ref=sr_1_2?ie=UTF8&qid=1326900691&sr=8-2"
ads[10].border = "0" 
ads[10].mouseover = "James Fortune & FIYA "




var n = random(numberOfAds)

n = (n==0) ? n+1 : n
n = (n > numberOfAds) ? n-numberOfAds : n

var image = ads[n]
var ad = ""
ad += '<a href="' + image.href + '" \n'
ad += 'onMouseOver="self.status=\'' + image.mouseover + '\'\;return true" \n'
ad += 'onMouseOut="self.status=\'\'"> \n'
ad += '<img src="' + image.src + '" width=' + image.width
ad += '\n height=' + image.height + ' border=' + image.border + '\n></a><br>'

//-->

