var ablock = 'DeepImage';
 function runSlideShow() {
        if (document.all && (navigator.appName != 'Microsoft Internet Explorer') ) {
            document.getElementById(ablock).style.filter = "blendTrans(duration=2)";
            document.getElementById(ablock).style.filter = "blendTrans(duration=FadeDuration)";
            document.getElementById(ablock).filters.blendTrans.Apply();
        }
        document.getElementById(ablock).style.background = 'url(' + preLoad[j].src + ') no-repeat scroll left top transparent';
        if (document.all  && (navigator.appName != 'Microsoft Internet Explorer')) {
            document.getElementById(ablock).filters.blendTrans.Play();
        }
        j = j + 1;
        if (j > (p - 1)) j = 0;
        t = setTimeout('runSlideShow()', slideShowSpeed);
    }
    
    
$(function(){ runSlideShow();});    
