	if (document.images) {
		view1 = new Image
		view2 = new Image
		view3 = new Image
		view4 = new Image
		view5 = new Image
		view6 = new Image
		view7 = new Image
		view8 = new Image

		view1.src = "img/bar1.gif"
		view2.src = "img/bar12.gif"
		view3.src = "img/bar13.gif"
		view4.src = "img/bar14.gif"
		view5.src = "img/bar15.gif"
		view6.src = "img/bar16.gif"
		view7.src = "img/bar17.gif"
		view8.src = "img/bar18.gif"

		off2 = new Image
		off3 = new Image
		off4 = new Image
		off5 = new Image
		off6 = new Image
		off7 = new Image
		off8 = new Image
		on2 = new Image
		on3 = new Image
		on4 = new Image
		on5 = new Image
		on6 = new Image
		on7 = new Image
		on8 = new Image
		
		on2.src = "img/bar2.gif"
		on3.src = "img/bar3.gif"	
		on4.src = "img/bar4.gif"
		on5.src = "img/bar5.gif"
		on6.src = "img/bar6.gif"
		on7.src = "img/bar7.gif"
		on8.src = "img/bar8.gif"
		off2.src = "img/bar2a.gif"
		off3.src = "img/bar3a.gif"
		off4.src = "img/bar4a.gif"
		off5.src = "img/bar5a.gif"
		off6.src = "img/bar6a.gif"
		off7.src = "img/bar7a.gif"
		off8.src = "img/bar8a.gif"	

	}
	
	function chgImg(imgField,newImg) {
		if (document.images) {
			document[imgField].src= eval(newImg + ".src")
		}
	}

adImages = new Array("img/fact1.gif","img/fact2.gif","img/fact3.gif","img/fact4.gif","img/fact5.gif","img/fact6.gif","img/fact7.gif","img/fact8.gif")
	thisAd = 0
	imgCt = adImages.length

	function rotate() {
	if (document.images) {
			thisAd++
			if (thisAd == imgCt) {
					thisAd = 0
				}
			document.factBanner.src=adImages[thisAd]
		  	setTimeout("rotate()", 7 * 1000)
		}
	}
