Right, that's probably it then. There could be other problems but there need to be commas after each sub array except the last one. I've added them to the code, red on the highlighted lines:
Code:
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [550, 550], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/dogs/dogs.jpg", "albums/dogs.html", "", ""],
["images/dogs/dogs3.jpg", "albums/dogs.html", "", ""],
["images/bsp/bsp.jpg", "albums/bsp.html"],
["images/bsp/bsp9.jpg", "albums/bsp.html", "", ""],
["images/abr/abr.jpg", "albums/abr.html"],
["images/abr/abr3.jpg", "albums/abr.html"] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:true},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 800, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: ""
})
</script>
Bookmarks