
    // =======================================
    // Set the following variables
    // =======================================
    

    // Specify the image files:
    // this is used by the javascript.  This will allow us to make
    // changes as needed...
    var Pic = new Array() // don't touch this!
    // to add more images, just continue
    // the pattern, adding to the array below

    Pic[0] = 'images/logo_1_a.jpg'
    Pic[1] = 'images/logo_2_a.jpg'
    Pic[2] = 'images/logo_3_a.jpg'
    Pic[3] = 'images/logo_4_a.jpg'
    Pic[4] = 'images/logo_5_a.jpg'
    Pic[5] = 'images/logo_6_a.jpg'
    Pic[6] = 'images/logo_7_a.jpg'
    Pic[7] = 'images/logo_8_a.jpg'            
    Pic[8] = 'images/logo_9_a.jpg'       
    
    // skip into after the first time...
    var skipIntoAfterFirstCycle = true
    
    // skip the first 3 images...
    var introSkip = 3
    
    // Set slideShowSpeed (milliseconds) (5 seconds):
    var slideShowSpeed = 5000

    // Duration of crossfade (seconds) for IE:
    var crossFadeDuration = 3

    // Set the positioning variables, below:
    // Negative numbers are relative to right (whereX) or bottom (whereY)
    // Positive numbers are relative to left (whereX) or (whereY) top
    // Experiment with values to get positioning exact, and allow
    // for the dimensions of the image in the positioning

    var whereX = 140;
    var whereY = 10; //-233;
    
    // specify the images in the main file...

    // =======================================
    // Do not edit *anything* below this line!
    // =======================================

    var nn=(navigator.appName.indexOf("Netscape")!=-1);
    var t;
    var j=0;
    var p=Pic.length;
    var preLoad=new Array();

    // preload all the images...
    for (i=0;i<p;i++)
    {
        preLoad[i]=new Image();
        preLoad[i].src = Pic[i];
    }

    // =======================================
    // This will run the full slideshow and 
    // use the times above.  Also, I've removed
    // the 'float' for this as it was not
    // necessary.  To re-enable, you'll need to
    // add style="position:absolute;z-index:1000000"
    // to the ="FloatSlideShow" div and adjust
    // the whereX and whereY values accordingly.
    // =======================================
    function runSlideShow()
    {
        if (document.all)
        {
            document.images.SlideShow.style.filter="blendTrans(duration=3)";
            document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
            document.images.SlideShow.filters.blendTrans.Apply();
        }
        
        if (document.all || document.getElementById)
        {
            document.images.SlideShow.src = preLoad[j].src;
        }
        else
        {
            document.FloatSlideShow.document.images["SlideShow"].src = preLoad[j].src;
        }
        
        if (document.all)
        {
            document.images.SlideShow.filters.blendTrans.Play();
        }

        j=j+1;
        
        // this MUST be declared in the main file!
        if(skipIntoAfterFirstCycle)
        {
            if (j>(p-1))
                // skip the intro images that state the moto after the first run...
                j=introSkip;
        }
        else
        {
            if (j>(p-1))
                // start at the beginning...
                j=0;        
        }
            
        t=setTimeout('runSlideShow()', slideShowSpeed);
    }

    var dD=document,dH=dD.html,dB=dD.body,px=dD.layers?'':'px';

    function floatSS(iX,iY,id)
    {
        var L=dD.getElementById?dD.getElementById(id):dD.all?dD.all[id]:dD.layers[id];		
        
        this[id+'O']=L;
        if(dD.layers)
            L.style=L;L.nX=L.iX=iX;L.nY=L.iY=iY;
        

        L.P=function(x,y)
        {
            this.style.left=x+px;
            this.style.top=y+px;
        };
        
        L.Fss=function()
        {
            var pX, pY;	
            pX=(this.iX >=0)?0:nn?innerWidth:nn&&dH.clientWidth?dH.clientWidth:dB.clientWidth;	
            pY=nn?pageYOffset:nn&&dH.scrollTop?dH.scrollTop:dB.scrollTop;	

            if(this.iY<0)
                pY+=nn?innerHeight:nn&&dH.clientHeight?dH.clientHeight:dB.clientHeight;	
                
            this.nX+=.1*(pX+this.iX-this.nX);
            this.nY+=.1*(pY+this.iY-this.nY);
            this.P(this.nX,this.nY);
            
            setTimeout(this.id+'O.Fss()',33);
         };
         return L;
    }
         
    floatSS(whereX,whereY,'FloatSlideShow').Fss();
                 