			<!--
					var aImages = new Array("slideshow/antique-clock-shop-winchester-2.jpg","slideshow/antique-clock-shop-winchester-1.jpg","slideshow/cws2.jpg","slideshow/cws7.jpg","slideshow/cws8.jpg");
					var aSize = new Array(425,278)
					var aDisplay = 5000
					var aTimer = null
					var aCurrent = 0
					var aSource = ""
					function doDisplay() {
							clearTimeout(aTimer)
						if (aSource!="") {
									if (document.images.slideShow.filters) {
											document.images.slideShow.filters[0].Stop()
											document.images.slideShow.filters[0].Apply()
										document.images.slideShow.filters.blendTrans.duration=3
								}
									document.images.slideShow.src = aSource
									if (document.images.slideShow.filters)
											document.images.slideShow.filters[0].Play()
						}
					}
					function doReadyImage() {
						aSource = this.src
							if (aTimer==null) doDisplay()
					}
					function doErrorDisplay() {
							clearTimeout(aTimer)
							doLoad()
					}
					function doLoad() {
						clearTimeout(aTimer)
						var aImg = new Image()
						aImg.onload = doReadyImage
							aImg.onerror = doErrorDisplay
							aSource = ""
						aCurrent++
							if (aCurrent==aImages.length) aCurrent=0
							aTimer = setTimeout("aTimer=null;doDisplay()",aDisplay)
							aImg.src = aImages[aCurrent]
					}
					document.write("<A HREF=\".\" TITLE=\"antique clocks &amp; barometers\"><IMG class=\"slideshow\" NAME=slideShow SRC=\"" + aImages[aCurrent] + "\" ALIGN=\"default\" ONERROR=\"doLoad()\" ONLOAD=\"doLoad()\" WIDTH=\"" + aSize[0] + "\" HEIGHT=\"" + aSize[1] + "\" STYLE=\"filter: blendTrans(duration=3)\" BORDER=\"0\" ALT=\"antique clocks &amp; barometers (click to restart)\" halign=\"0\" valign=\"0\" vspace=\"20\" hspace=\"10\"></A>");
			//-->
