Right now you have no URL associated with each image inside the .js file:
Code:
fadeimages[0]=["images/photo1.jpg"] //plain image syntax
fadeimages[1]=["images/photo2.jpg"] //plain image syntax
fadeimages[2]=["images/photo3.jpg"] //plain image syntax
The proper structure for fadeimages[] is:
Code:
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["photo1.jpg", "", ""] //plain image syntax
fadeimages[1]=["photo2.jpg", "http://www.cssdrive.com", ""] //image with link syntax
fadeimages[2]=["photo3.jpg", "http://www.javascriptkit.com", "_new"] //image with link and target syntax
Bookmarks