
 
// (C) 2002 www.CodeLifter.com <http://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 SlideShowSpeed6 = 3800;
 
// Set the duration of crossfade (in seconds)
var CrossFadeDuration6 = 4;
 
var Picture6 = new Array(); // don't change this
var Caption6 = new Array(); // don't change this
 

 
Picture6[1]  = 'images/places/place1.jpg';
Picture6[2]  = 'images/places/place2.jpg';
Picture6[3]  = 'images/places/place3.jpg';
Picture6[4]  = 'images/places/place4.jpg';



 
Caption6[1]  = "";
Caption6[2]  = "";



 
var tss6;
var iss6;
var jss6 = 1;
var pss6 = Picture6.length-1;
 
var preLoad6 = new Array();
for (iss6 = 1; iss6 < pss6+1; iss6++){
preLoad6[iss6] = new Image();
preLoad6[iss6].src = Picture6[iss6];}
 
function runSlideShow6(){
if (document.all){
document.images.PictureBox6.style.filter="blendTrans(duration=2)";
document.images.PictureBox6.style.filter="blendTrans(duration=CrossFadeDuration3)";
document.images.PictureBox6.filters.blendTrans.Apply();}
document.images.PictureBox6.src = preLoad6[jss6].src;
//if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss3];
if (document.all) document.images.PictureBox6.filters.blendTrans.Play();
jss6 = jss6 + 1;
if (jss6 > (pss6)) jss6=1;
tss6 = setTimeout('runSlideShow6()', SlideShowSpeed6);
}
 
