    <!--
			var slideShowInterval = 5000;
			var FadeDuration = 4.5;
			var Pic = new Array();

Pic[0] = 'bedroom-blue.jpg'
Pic[1] = 'dining_round.jpg'





						
		
						var t = 0;
			var j = 0;
			var p = Pic.length;
			
			/*alert("p:"+p);*/
			
			var preLoad = new Array();
			for (i = 0; i < p; i++){
				preLoad[i] = new Image();
				preLoad[i].src = Pic[i];
			}
			
				
			function runSlideShow(){
				if (document.all)
				{
					//alert('document all');
					document.images.SlideShow.style.filter="blendTrans(duration=4)";
					document.images.SlideShow.style.filter="blendTrans(duration=FadeDuration)";
					document.images.SlideShow.filters.blendTrans.Apply();
				}
			   	document.images.SlideShow.src = preLoad[j].src
				if (document.all){
					document.images.SlideShow.filters.blendTrans.Play();
				}
				//document.titleForm.title.value=titleArray[j][1];				
				j = j + 1
				if (j > (p-1)) 
					j=0
				t = setTimeout('runSlideShow()', slideShowInterval);
			}
			
		//-->
   