In each of the on page initializations, on their third image, there's an extra " mark, example (highlighted red):
Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [205, 164], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images_fading/3322-West-End-pic_out.jpg", "", "", ""],
["images_fading/Nortel_out.jpg", "", "", ""],
["images_fading/The-Belvedere.jpg", "", "", """] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "always",
togglerid: ""
})
By the way, if you have no links or captions you don't need any of those, they can be like:
Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [205, 164], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images_fading/3322-West-End-pic_out.jpg"],
["images_fading/Nortel_out.jpg"],
["images_fading/The-Belvedere.jpg"] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "always",
togglerid: ""
})
There could also be other problems, but that much has to be fixed first and may be the only problem.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks