<!--
	if (top.location != self.location) {
	  top.location = self.location
	}
	bnrImages = new Array("uncompah-sm.jpg", "goat-sm.jpg", "elbert-sm.jpg", "longs2-sm.jpg", "gladston-sm.jpg")
	bnrAltText = new Array ("Uncompahgre Peak", "Mountain Goat", "Mount Elbert", "Longs Peak", "Gladstone Peak")
	imgCount = bnrImages.length
	thisPic = imgCount - 1

	BannerPic1 = new Image(133,263)
	BannerPic1.src = "uncompah-sm.jpg"
	BannerPic2 = new Image(133,263)
	BannerPic2.src = "goat-sm.jpg"
	BannerPic3 = new Image(133,263)
	BannerPic3.src = "elbert-sm.jpg"
	BannerPic4 = new Image(133,263)
	BannerPic4.src = "longs2-sm.jpg"
	BannerPic5 = new Image(133,263)
	BannerPic5.src = "gladston-sm.jpg"
	BannerText = new Image(133, 223)
	BannerText.src = "banner.gif"

	function rotate() {
	  if (document.images) {
	    thisPic++
	    if (thisPic == imgCount) {
	      thisPic = 0
	    }
	    document.bnrPic.src = bnrImages[thisPic]
	    document.bnrPic.alt = bnrAltText[thisPic]
	    setTimeout("rotate()", 5 * 1000)
	  }
	}
//-->
