It looks like the paths to the images inside the slideshow are incorrect:
Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [1000, 300], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["Fadeshow/pic1.jpg", "", "", "Two crazy kids"],
["Fadeshow/pic2.jpg", "mongrel.html", "_new", "The Same Two Crazy Kids"],
["Fadeshow/pic3.jpg"],
["Fadeshow/pic1.jpg", "", "", "What a beautiful scene with everything changing colors."] //<--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: "ondemand",
togglerid: ""
})
For example, if you look at the path in red hightlighted above, it points to a non existent image: http://www.redlampfilms.com/Fadeshow/pic1.jpg. If in doubt change all of the references above to absolute URLs.
Bookmarks