<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
var SlideShowSpeed = 4000;
var CrossFadeDuration = 10;
var Picture = new Array(); 
var Caption = new Array();
Picture[1]  = 'image/1a/scenery2.jpg';
Picture[2]  = 'image/1a/scenery3.jpg';
Picture[3]  = 'image/1a/scenery1.jpg';
Picture[4]  = 'image/1a/exterior1.jpg';
Picture[5]  = 'image/1a/interior1.jpg';
Picture[6]  = 'image/1a/interior2.jpg';
Picture[7]  = 'image/1a/interior5.jpg';
Picture[8]  = 'image/1a/interior3.jpg';
Picture[9]  = 'image/1a/interior4.jpg';

Caption[1]  = "Overlooking Penticton and Naramata";
Caption[2]  = "Okanagan Lake from Naramata vantage point";
Caption[3]  = "Chute Lake viewpoint from cabin window";
Caption[4]  = "The cabin is located in the deep of the forest";
Caption[5]  = "Cozy, clean and comfortable surroundings";
Caption[6]  = "Fantastic viewpoint soaks up the natural beauty";
Caption[7]  = "Modern facilities include fridge, sink and stove";
Caption[8]  = "Lower partially divided sleeping quarters";
Caption[9]  = "The loft";

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
//-->