		function changePhoto(){
			var imgHome = document.getElementById("fotohp");
		   if (document.all){
			  imgHome.style.filter="blendTrans(duration=2)"
			  imgHome.style.filter="blendTrans(duration=crossFadeDuration)"
			  imgHome.filters.blendTrans.Apply()      
		   }
			imgHome.src = photo[actualphoto];
		   if (document.all){
			  imgHome.filters.blendTrans.Play()
		   }
			actualphoto++;
			if (actualphoto >photo.length-1)
			{
			actualphoto = 0;
			}
		}

		setInterval("changePhoto()",speed)
		
		function show(what){
			var divBooking  = document.getElementById("booking");
			var divOffers  = document.getElementById("offers");
			if (what === 'offers'){
				divBooking.style.zIndex = -1;
				divBooking.style.display="none";
				divOffers.style.zIndex = 9;
				divOffers.style.display="";
			}else{
				divBooking.style.display="";
				divBooking.style.zIndex = 9;
				divOffers.style.display="none";
				divOffers.style.zIndex = -1;
			}
		}

		function touripix(file,w,h){
			if (file!='') {
				var tourIpix = window.open(file,"VTwindow","width="+w+",height="+h);
				tourIpix.focus();
			}
		}

		function virtualtour(img,w,h){
			if (img!='') {
				var virtualTour = window.open("/images/java/virtual.asp?file="+img,"VTwindow","width="+w+",height="+h);
				virtualTour.focus();
			}
		}

