// JavaScript Document

<!-- /SLIDE SHOW --> 

var stopShow = 0;

var SlideShowSpeed = 4000;

var CrossFadeDuration = 1;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

Picture[1]  = './imgs/home2.jpg';
Picture[2]  = './imgs/home3.jpg';
Picture[3]  = './imgs/home4.jpg';
Picture[4]  = './imgs/home5.jpg';
Picture[5]  = './imgs/home6.jpg';
Picture[6]  = './imgs/home.jpg';
/*Picture[7]  = './imgs/img_home3.jpg';
Picture[8]  = './imgs/img_home_empty.png';
Picture[9]  = './imgs/home4.jpg';
Picture[10]  = './imgs/home.png';
Picture[11]  = './imgs/home5.jpg';
Picture[12]  = './imgs/home.png';
Picture[13]  = './imgs/home6.jpg';
Picture[14]  = './imgs/home.png';
*/
Caption[1]  = "Solar Edge Inverters";
Caption[2]  = "Kingspan Roof Installing";
Caption[3]  = "Maglev";
Caption[4]  = "Kingspan, Worldleader";
Caption[5]  = "Bundle Package";
Caption[6]  = "Maglev Solutions";
/*Caption[7]  = "Sunrise Algarve - Portugal";
Caption[8]  = "";
Caption[9]  = "";
Caption[10]  = "";
Caption[11]  = "";
Caption[12]  = "";
Caption[13]  = "";
Caption[14]  = "";
*/
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 -->

