////////////////////////////////////////////////////Start Top Slide Show///////////////////////////////////////

        var slideShowSpeed = 5000;
        var crossFadeDuration = 5;
        var Pic = new Array();
        var t;
        var j = 0;
        var preLoad = new Array();
        
        Pic[0] = 'images/100_0139.jpg'
        Pic[1] = 'images/100_0140.JPG'
        Pic[2] = 'images/100_0141.JPG'
        Pic[3] = 'images/100_0143.JPG'
        Pic[4] = 'images/100_0144.JPG'	
        Pic[5] = 'images/100_0145.JPG'
        Pic[6] = 'images/100_0146.JPG'
        Pic[7] = 'images/100_0147.JPG'
        Pic[8] = 'images/100_0148.JPG'
        Pic[9] = 'images/100_0149.JPG'
        Pic[10] = 'images/100_0150.JPG'
        Pic[11] = 'images/100_0151.JPG'
        Pic[12] = 'images/100_0152.JPG'
        Pic[13] = 'images/100_0152.JPG'
        Pic[14] = 'images/100_0154.JPG'
        Pic[15] = 'images/100_0156.JPG'
        Pic[16] = 'images/100_0157.JPG'
        Pic[17] = 'images/100_0158.JPG'	
        Pic[18] = 'images/100_0159.JPG'
        Pic[19] = 'images/100_0160.JPG'
        Pic[20] = 'images/100_0161.JPG'
        Pic[21] = 'images/100_0162.JPG'
        Pic[22] = 'images/100_0164.JPG'
        Pic[23] = 'images/100_0165.JPG'
        Pic[24] = 'images/100_0166.JPG'
        Pic[25] = 'images/100_0167.JPG'
        Pic[26] = 'images/100_0168.JPG'

	
        var p = Pic.length;
        
        for (i = 0; i < p; i++)
        {
                preLoad[i] = new Image();
                preLoad[i].src = Pic[i];
        }
        
        function runSlideShow()
        {
                if (document.all)
                {
                        document.images.SlideShow.style.filter="blendTrans(duration=575)";
                        document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
                        document.images.SlideShow.filters.blendTrans.Apply();
                }
                document.images.SlideShow.src = preLoad[j].src;
        
                if (document.all)
                {
                        document.images.SlideShow.filters.blendTrans.Play();
                }
                
                j = j + 1;
                
                if (j > (p - 1)) j = 0;
                        t = setTimeout('runSlideShow()', slideShowSpeed);
        }
////////////////////////////////////////////////////End Top Slide Show///////////////////////////////////////