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: [600, 493], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["media/slide_2.jpg", "", "", ""],
["media/slide_1.jpg", "", "", ""],
//<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:6000, cycles:1, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 2000, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: ""
})
</script>
Get rid of that red comma. It's technically an error. Most browsers error correct it, but not IE 8 and less.
The browser cache may need to be cleared and/or the page refreshed to see changes.
There could also be other problems, but since it works in other browsers, probably not.
Bookmarks