In your source code, some of the arry entries still have links:
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
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]=["http://img504.imageshack.us/img504/4697/mainpicw01ii5.png" "", ""]
fadeimages2[1]=["http://img178.imageshack.us/img178/667/mainpicw02vu0.png", "", ""]
fadeimages2[2]=["http://img75.imageshack.us/img75/9374/mainpicw03jm8.png", "", ""]
fadeimages2[3]=["http://img397.imageshack.us/img397/1686/mainpicw04fo8.png", "", ""]
var fadeimages3=new Array() //2nd array set example. Remove or add more sets as needed.
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages3[0]=["photo1.jpg", "", ""] //plain image syntax
fadeimages3[1]=["photo2.jpg", "http://www.cssdrive.com", ""] //image with link syntax
fadeimages3[2]=["photo3.jpg", "http://www.javascriptkit.com", "_new"] //image with link and target syntax
var fadebgcolor="white"
And, you are missing a comma here:
Code:
fadeimages2[0]=["http://img504.imageshack.us/img504/4697/mainpicw01ii5.png", "", ""]
Which makes the entire script barf in IE.
Bookmarks