            var slides = new Array();
            var slidesShown = 0;
            
            function setupSlideshow ( ) {																	   
                slides[0] = new Array("http://www.stressmarq.com/images/frontpage/SMC-100.jpg", "<b>SMC-100A/B AntiHSP-70</b>", "http://www.stressmarq.com/specs/SMC-100.pdf");
                slides[1] = new Array("http://www.stressmarq.com/images/frontpage/SMC-105.jpg", "<b>SMC-105A/B Anti-GRP94</b>", "http://www.stressmarq.com/specs/SMC-105.pdf");
                slides[2] = new Array("http://www.stressmarq.com/images/frontpage/SMC-110.jpg", "<b>SMC-110A/B Anti-HSP60</b>", "http://www.stressmarq.com/specs/SMC-110.pdf");
                slides[3] = new Array("http://www.stressmarq.com/images/frontpage/SMC-138.jpg", "<b>SMC-138C/D Anti-FKBP51</b>", "http://www.stressmarq.com/specs/SMC-138.pdf");
                slides[4] = new Array("http://www.stressmarq.com/images/frontpage/SMC-139.jpg", "<b>SMC-139C/D Anti-FKBP52</b>", "http://www.stressmarq.com/specs/SMC-139.pdf");
                slides[5] = new Array("http://www.stressmarq.com/images/frontpage/SMC-140.jpg", "<b>SMC-140C/D Anti-LAMP1</b>", "http://www.stressmarq.com/specs/SMC-140.pdf");
                slides[6] = new Array("http://www.stressmarq.com/images/frontpage/SMC-141.jpg", "<b>SMC-141C/D Anti-LAMP2</b>", "http://www.stressmarq.com/specs/SMC-141.pdf");
                slides[7] = new Array("http://www.stressmarq.com/images/frontpage/SMC-155.jpg", "<b>SMC-155C/D Anti-DNA/RNA Damage</b>", "http://www.stressmarq.com/specs/SMC-155.pdf");
                slides[8] = new Array("http://www.stressmarq.com/images/frontpage/SPC-116.jpg", "<b>SPC-116C/D Anti-Cu/Zn SOD</b>", "http://www.stressmarq.com/specs/SPC-116.pdf");
                slides[9] = new Array("http://www.stressmarq.com/images/frontpage/SPC-118.jpg", "<b>SPC-118C/D Anti-Mn SOD</b>", "http://www.stressmarq.com/specs/SPC-118.pdf");
                slides[10] = new Array("http://www.stressmarq.com/images/frontpage/SPC-165.jpg", "<b>SPC-165C/D Anti-PUMA-NT</b>", "http://www.stressmarq.com/specs/SPC-165.pdf");
            }																								   
            																								   
            function runSlideshow ( ) {
                var show = slidesShown % slides.length;
                showImage(slides[show][0], slides[show][1], slides[show][2]);
                slidesShown++;
                self.setTimeout('runSlideshow()', 5000);
            }
            
            function showImage( imageURL, caption, link ) {
                document.getElementById('slideshow').innerHTML = "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"400\"><tr><td></td><td height=\"225\" align=\"center\"><a href=\"" + link + "\"><img src=\"" + imageURL + "\"></a><p><a href=\"" + link + "\">" + caption + "</a></p></td><td></td></tr></table>";
            }
