function runSlideShow() {

    SlideShowSpeed = 4000;
    if (typeof (document.images.PictureBox) == "undefined") {
        //alert("PictureBox undefined");
        return;
    }

    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.PictureAgent.style.filter = "blendTrans(duration=2)";
        document.images.PictureAgent.style.filter = "blendTrans(duration=CrossFadeDuration)";
        document.images.PictureAgent.filters.blendTrans.Apply();

        document.images.PictureLogo.style.filter = "blendTrans(duration=2)";
        document.images.PictureLogo.style.filter = "blendTrans(duration=CrossFadeDuration)";
        document.images.PictureLogo.filters.blendTrans.Apply();
        
    }

    if (document.getElementById) // If we`re not in Netscape 4.x
    {
        imageMain = arrImageMain[jss];
        imageAgent = arrImageAgent[jss];
        imageLogo = arrImageLogo[jss];

        document.images.PictureBox.src = imageMain;
        document.images.PictureAgent.src = imageAgent;
        document.images.PictureLogo.src = imageLogo;
        
        
        if (document.getElementById) {


            document.getElementById("featTitle").innerHTML = arrTitle[jss];
            document.getElementById("agentName").innerHTML = arrAgentName[jss];
            document.getElementById("agentAddress").innerHTML = arrAddress[jss];
            document.getElementById("cityStateZip").innerHTML = arrCityStateZip[jss];
            document.getElementById("phone").innerHTML = arrPhone[jss];
            document.getElementById("footer").innerHTML = arrFooter[jss];

        }
        if (document.all) document.images.PictureBox.filters.blendTrans.Play();
        if (document.all) document.images.PictureAgent.filters.blendTrans.Play();
        if (document.all) document.images.PictureLogo.filters.blendTrans.Play();
        
        //featID = featIDArray[jss];
        jss = jss + 1;
        if (jss > (pss)) jss = 0;

        tss = setTimeout('runSlideShow()', SlideShowSpeed);

    }
}