
    <!--
			var slideShowInterval = 5000;
			var FadeDuration = 2.0;
			var Pic = new Array();
						Pic[0] = 'images/viewbalcony3.jpg'
						Pic[1] = 'images/test3.jpg'
						Pic[2] = 'images/beach.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 maximizeWin() {
				top.window.moveTo(0,0);
				if(document.all) {
					top.window.resizeTo(screen.availWidth,screen.availHeight);
				}
				else if(document.layers||document.getElementById) {
					if(top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth) {
						top.window.outerHeight = screen.availHeight;
						top.window.outerWidth = screen.availWidth;
					}
				}
			}
			function opensite(site) {
				window.open(site,"links","resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,status=no,left=0,top=0,height=487,width=414");
			}	
			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);
			}
			function stopSlideShow() {
				if(t) {
					clearTimeout(t);
					t=0;
				}
			}
			function preSlide(){
			if (j <= 0) { j = p }
				j = j - 1
				document.images.SlideShow.src=preLoad[j].src
				//document.titleForm.title.value=titleArray[j][1];
			}
			function nextSlide(){
				j = j + 1
				if (j > (p-1)) j=0
				document.images.SlideShow.src=preLoad[j].src
				//document.titleForm.title.value=titleArray[j][1];
			}
		
		//-->


