You've kind of missed the point on a number of things with this script. Where you have this:
Code:
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 140, 225, 0, 3000, 1, "R")
new fadeshow(fadeimages2, 140, 225, 0, 3000, 0)
</script>
It should be:
Code:
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 429, 429, 0, 3000, 1)
</script>
And, where you have this:
Code:
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["../img/WEBGRAPHIC1.jpg", "", ""] //plain image syntax
fadeimages[1]=["../img/WEBGRAPHIC2.jpg", "http://www.cssdrive.com", ""] //image with link syntax
fadeimages[2]=["../img/WEBGRAPHIC1.jpg", "http://www.javascriptkit.com", "_blank"] //image with link and target syntax
var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed.
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["../img/WEBGRAPHIC1.jpg", "", ""] //plain image syntax
fadeimages[1]=["../img/WEBGRAPHIC2.jpg", "http://www.cssdrive.com", ""] //image with link syntax
fadeimages[2]=["../img/WEBGRAPHIC1.jpg", "http://www.javascriptkit.com", "_blank"] //image with link and target syntax
var fadebgcolor="white"
////NO need to edit beyond here/////////////
It should be:
Code:
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["../img/WEBGRAPHIC1.jpg", "", ""] //plain image syntax
fadeimages[1]=["../img/WEBGRAPHIC2.jpg", "", ""] //plain image syntax
var fadebgcolor="white"
////NO need to edit beyond here/////////////
BTW, anything that follows // to the end of the line is a comment/instructions.
Bookmarks