// JavaScript Document

<!-- /SLIDE SHOW --> 
var stopShow = 0;

var SlideShowSpeed = 3000;

var CrossFadeDuration = 3;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

Picture[1]  = 'imgs/area2.jpg';
Picture[2]  = 'imgs/area3.jpg';
Picture[3]  = 'imgs/area4.jpg';
Picture[4]  = 'imgs/area1.jpg';
/*Picture[5]  = 'imgs/sales.jpg';
Picture[6]  = 'imgs/race.jpg';
//Picture[6]  = 'imgs/rural1.jpg';
//Picture[6]  = './imgs_c/vilasol1.jpg';
//Picture[7]  = './imgs_c/pine_cliffs_home2.jpg';
//Picture[8]  = './imgs_c/vilasol2.jpg';*/

Caption[1]  = "Algarve Golf";
Caption[2]  = "Boliqueime";
Caption[3]  = "Algarve Shopping";
Caption[4]  = "Algarve Beaches";
/*Caption[5]  = "Racing Car Trading";
Caption[6]  = "Track Days at AutoDromo Portimão";*/
//Caption[6]  = "Vila Sol Golf&nbsp;";
//Caption[7]  = "Sheraton Pine Cliffs Academy&nbsp;";
//Caption[8]  = "Vila Sol Golf&nbsp;";

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(){
    //alert(stopShow);
if (stopShow==0){
    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;
    //window.setTimeout('runSlideShow()', SlideShowSpeed);
    }
}

<!-- end slideshow -->
