<!--

/* Image randomiser */

    adImages = new Array("/images_ccg/pic01.jpg","/images_ccg/pic02.jpg","/images_ccg/pic03.jpg","/images_ccg/pic04.jpg","/images_ccg/pic05.jpg")
    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.panel.src=adImages[thisAd]
        setTimeout("rotate()", 100 * 5000)
    }
 }
 
 
-->