You have several problems. In no particular order:
There are no:
Code:
Globalstylesimages/header/hdslideshow/slideshow1/Photof01.jpg
Globalstylesimages/header/hdslideshow/slideshow1/Photof02.jpg
Globalstylesimages/header/hdslideshow/slideshow1/Photof03.jpg
on the server in the location indicated.
You are only trying to use the one show for now. So, you should get rid of (in the head):
Code:
var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed.
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages2[0]=["photo1.jpg", "", ""] //plain image syntax
fadeimages2[1]=["photo2.jpg", "http://www.cssdrive.com", ""] //image with link syntax
fadeimages2[2]=["photo3.jpg", "http://www.javascriptkit.com", "_new"] //image with link and target syntax
and (in the body):
Code:
new fadeshow(fadeimages2, 140, 225, 0, 3000, 0)
The syntax of the array you are trying to use is off because you have left out some important commas (from your source code, missing commas added in red):
Code:
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["Globalstylesimages/header/hdslideshow/slideshow1/Photof01.jpg", "", ""] //plain image syntax
fadeimages[1]=["Globalstylesimages/header/hdslideshow/slideshow1/Photof02.jpg", "",""] //image with link syntax
fadeimages[2]=["Globalstylesimages/header/hdslideshow/slideshow1/Photof03.jpg", "",""] //image with link and target syntax
There could also be other problems.
Bookmarks