 var aImages = new Array("qsdimages/show/top1.jpg","qsdimages/show/top2.jpg","qsdimages/show/top3.jpg","qsdimages/show/top4.jpg","qsdimages/show/top5.jpg","qsdimages/show/top1.jpg","qsdimages/show/top1.jpg","qsdimages/show/top2.jpg","qsdimages/show/top3.jpg")
              var aSize = new Array(463,413)
              var iDisplay = 5000
              var oTimer = null
              var iCurrent = 0
              var sSource = ""
              function doDisplay() {
	            clearTimeout(oTimer)
                if (sSource!="") {
                    if (document.images.slideShow.filters) {
			            document.images.slideShow.filters[0].Stop()
			            document.images.slideShow.filters[0].Apply()
		  	            document.images.slideShow.filters.revealTrans.transition=23
		             }
  		             document.images.slideShow.src = sSource
		            if (document.images.slideShow.filters)
			            document.images.slideShow.filters[0].Play()
					}
              }

              function doReadyImage() {
	              sSource = this.src
	              if (oTimer==null) doDisplay()
              }
			  
              function doLoad() {
	             clearTimeout(oTimer)
	             var img = new Image()
	             img.onload = doReadyImage
	             sSource = ""
	             iCurrent++
	             if (iCurrent==aImages.length) iCurrent=0
	                oTimer = setTimeout("oTimer=null;doDisplay()",iDisplay)
	                img.src = aImages[iCurrent]
              }
                document.write("<IMG NAME=slideShow SRC=\"" + aImages[iCurrent] + "\" ONERROR=\"doLoad()\" ONLOAD=\"doLoad()\" WIDTH=\"" + aSize[0] + "\" HEIGHT=\"" + aSize[1] + "\" STYLE=\"filter: revealTrans(TRANSITION=23)\">");