This part that you have edited:
Code:
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width="300px", slideshow_height="225px", borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
Is only a comment (comment lines in javascript begin with //), instructions as to how to edit this part that you have left alone:
Code:
new fadeshow(fadeimages, 140, 225, 0, 3000, 1)
You would probably want to make that:
Code:
new fadeshow(fadeimages, 300, 225, 0, 3000, 1)
This line with the fadeimages2 array declared in it:
Code:
new fadeshow(fadeimages2, 140, 225, 0, 3000, 0)
Isn't needed unless you have a fadeimages2 array and a second slide show using it on the same page. It could even cause problems in some browsers if it isn't really being used. Get rid of it if you are not using it.
Bookmarks