
// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = 'view/thumbs/abc_thumb.jpg';
Picture[2]  = 'view/thumbs/altwindow_thumb.jpg';
Picture[3]  = 'view/thumbs/apple_thumb.jpg';
Picture[4]  = 'view/thumbs/ktproperty_thumb.jpg';
Picture[5]  = 'view/thumbs/prime_thumb.jpg';
Picture[6]  = 'view/thumbs/cdirect_thumb.jpg';
Picture[7]  = 'view/thumbs/dna_thumb.jpg';
Picture[8]  = 'view/thumbs/gbrental_thumb.jpg';
Picture[9]  = 'view/thumbs/gbspain_thumb.jpg';
Picture[10] = 'view/thumbs/guidobauer_thumb.jpg';
Picture[11] = 'view/thumbs/puinginito_thumb.jpg';
Picture[12] = 'view/thumbs/constance_thumb.jpg';
Picture[13] = 'view/thumbs/dna_thumb.jpg';
Picture[14] = 'view/thumbs/marrelos_thumb.jpg';
Picture[15] = 'view/thumbs/prime_thumb.jpg';

// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "Axarquia Business Club";
Caption[2]  = "Alternative Windows";
Caption[3]  = "Apple Estates";
Caption[4]  = "KT property maintenance Competa";
Caption[5]  = "Prime Agents property Spain";
Caption[6]  = "Connect Direct Property Spain";
Caption[7]  = "DnA Group UK";
Caption[8]  = "GB Properties Torrox Rental";
Caption[9]  = "GB Properties Torrox Sales";
Caption[10] = "Guido Bauer Estate Agents Torrox";
Caption[11] = "Puinginitos Tots &amp; Toddlers swimming";
Caption[12] = "Constance Private Wealth Management";
Caption[13] = "DnA Group";
Caption[14] = "Marrelos Nerja";
Caption[15] = "Prime Agents Spain";

// =====================================
// Do not edit anything below this line!
// =====================================

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);
}
