Get rid of the red comma (from the page's source code):
Code:
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [1024, 382], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/ind-banner1.jpg", "http://www.optex-ramco.com/transparent.html", "target_self"],
["images/prod-banner1.jpg", "http://www.optex-ramco.com/laser-measurement.html", "target_self"],
["images/ind-banner2.jpg","http://www.optex-ramco.com/laser.html", "target_self"],
["images/prod-banner2.jpg","http://www.optex-ramco.com/fiber.html" , "target_self"],
["images/ind-banner3.jpg", "http://www.optex-ramco.com/photo-electric-dc.html" , "target_self"],
["images/prod-banner3.jpg","http://www.optex-ramco.com/photo-electric-dc.html" , "target_self"]
//<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:5000, cycles:0, wraparound:false},
persist: true, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
})
Notes: This is a technical error (no comma allowed after the last entry in an array or object) for which all modern browsers will auto correct for you. With IE (at least for an object as is the case here), that starts at version 8. Others have been correcting for this for years.
Bookmarks