
   homePix = new Array 
        ("images/home/home0.jpg",
         "images/home/home1.jpg")

    thisPic = 0

    function rotateThis() {
      if (document.images) {
        thisPic++
        if (thisPic == homePix.length) {
          thisPic = 0
            
        }
        document.banner.src=homePix[thisPic]
        setTimeout("rotateThis()", 8 * 1000)
      }
    }

