    <!--
    // (C) 2000 www.CodeLifter.com
    // http://www.codelifter.com
    // Free for all users, but leave in this  header
    // NS4-6,IE4-6
    // Fade effect only in IE; degrades gracefully

    // =======================================
    // set the following variables
    // =======================================

    // Set slideShowSpeed (milliseconds)
    var slideShowSpeed = 5000

    // Duration of crossfade (seconds)
    var crossFadeDuration = 3

    // Specify the image files

    // to add more images, just continue
    // the pattern, adding to the array below

    // =======================================
    // do not edit anything below this line
    // =======================================

    var t
    var j = 0
    var p = Pic.length

    var preLoad = new Array()
    for (i = 0; i < p; i++){
       preLoad[i] = new Image()
       preLoad[i].src = Pic[i]
    }

    var runningTimer;
    function runSlideShow(){
       if (document.all){
          document.images.SlideShow0.style.filter="blendTrans(duration=2)"
          document.images.SlideShow0.style.filter="blendTrans(duration=crossFadeDuration)"
          document.images.SlideShow0.filters.blendTrans.Apply()      
       }
       document.images.SlideShow0.src = preLoad[j].src
       if (document.all){
          document.images.SlideShow0.filters.blendTrans.Play()
       }
       j = j + 1
       if (j > (p-1)) j=0
       runningTimer = setTimeout('runSlideShow()', slideShowSpeed)
    }

    function swapImage(j)
    {
        clearTimeout(runningTimer);
        document.images.SlideShow0.src = preLoad[j].src
    }

    function findPosY(obj)
    {
        var curtop = 0;
        var printstring = '';
        if (obj.offsetParent)
        {
            while (obj.offsetParent)
            {
                printstring += ' element ' + obj.tagName + ' has ' + obj.offsetTop;
                curtop += obj.offsetTop
                obj = obj.offsetParent;
            }
        }
        else if (obj.y)
            curtop += obj.y;
        return curtop;
    }

    function MoveImage() {
         var divPath = document.getElementById("movingPic"); 
        var SpaceY = findPosY(document.getElementById("PicSpace"));
         
        if (document.layers) 
         {
               if(window.pageYOffset > SpaceY)
              {
                divPath.style.top = window.pageYOffset-SpaceY+"px";
              }

        }
        else if (document.all) 
         {
                if(document.body.scrollTop > SpaceY)
                divPath.style.top = document.body.scrollTop-SpaceY+"px";

        }
    //    setTimeout('MoveImage()', 50)
    }

    //-->
