you can delete this part of your script
Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [0, 0], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["", "", "", ""],
["", ""],
[""],
["", "", "", ""] //<--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: "none",
togglerid: ""
})
And also delete the corresponding
<div style="position: absolute; width: 264px; height: 226px; z-index: 1; left: 868px; top: 789px" id="fadeshow1">
</div>
There is another problem with the path to the images. The images are saved as
Image1.JPG
with JPG as capital letters. In the image array it is written with small letters, so you will need to change that. ( it works on a local pc even if they are not the same, but it will not work on a server)
Bookmarks