// revolve.js
// revolving images

if (document.images)
{
    adImages = new Array("images/mahoganyKitchen.jpg","images/office.jpg");
    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 sponsor every 8 seconds
    setTimeout("cycleAds()", 6000);
}

			
