function runSlideShow() {
    SlideShowSpeed = 4000;
    if(typeof(document.images.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();
    }

    if (document.getElementById) // If we`re not in Netscape 4.x
    {
        featImage = featImageArray[jss];
        document.images.PictureBox.src = featImage;
        if (document.getElementById) {
			var x = cssQuery("li[class='feat']");
			var sfEls = cssQuery("a", x);
			for (var i=0; i<sfEls.length; i++)
			{
				sfEls[i].style.background = "#000000";
			}
			document.getElementById(jss).style.background = "#0066FF";
            document.getElementById("featTitle").innerHTML = featTitleArray[jss];
            document.getElementById("featLocation").innerHTML = featLocationArray[jss];
            document.getElementById("featBrok").innerHTML = featBrokArray[jss];
        }
        if (document.all) document.images.PictureBox.filters.blendTrans.Play();
        featID = featIDArray[jss];
        jss = jss + 1;
        if (jss > (pss)) jss=0;
        tss = setTimeout('runSlideShow()', SlideShowSpeed);
    }
}

function skipTo(number) {
    jss = number;
    clearTimeout(tss);
    runSlideShow();
}
