if (document.images)
{
    adImages = new Array("images/banners/streettalk.jpg","images/banners/theFarm2.jpg");
    adURLs = new Array("http://www.1africa.tv/streettalkBlog.php","");
	// adImages = new Array("banner/1voice.jpg","banner/flashlistenlive.jpg","banner/flashrds.jpg","banner/flashtouchinglives.jpg" );
	//  adURLs = new Array("1voice.php","live.php","rds.php");
    thisAd = 0;
}

function cycleAds()
{
    if (document.images)
    {
        if (document.adBanner.complete)
        {
            if (++thisAd == adImages.length)
                thisAd = 0;

            document.adBanner.src = adImages[thisAd];
        }
    }

    // change to next ad every 10 seconds
    setTimeout("cycleAds()", 10000);
}

function gotoAd()
{
    document.location.href = adURLs[thisAd];
}


