    adImages = new Array("../i/quote_prand1.gif","../i/quote_hmiller1.gif","../i/quote_thoreau1.gif","../i/quote_mdupree1.gif","../i/quote_jswift1.gif","../i/quote_edickenson.gif","../i/quote_rbfuller1.gif")    imgCt = adImages.length    firstTime = true function rotate() {    if (document.images) {        if (firstTime) {            thisAd = Math.floor((Math.random() * imgCt))            firstTime = false        }        else {            thisAd++            if (thisAd == imgCt) {                thisAd = 0            }        }        document.quotes.src=adImages[thisAd]        setTimeout("rotate()", 7 * 10000)    } }
