You're welcome, I missed something though. Or rather forgot to include it. In your arrays, if you are not going to use links and targets, you still need to use placeholder empty entries:
Code:
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["wreath2.gif", "", ""]
fadeimages[1]=["snow3.gif", "", ""]
fadeimages[2]=["xmasgreet.gif", "", ""]
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]=["lazer.gif", "", ""]
fadeimages2[1]=["b.gif", "", ""]
fadeimages2[2]=["a.gif", "", ""]
fadeimages2[3]=["d.gif", "", ""]
fadeimages2[4]=["e.gif", "", ""]
fadeimages2[5]=["f.gif", "", ""]
fadeimages2[6]=["g.gif", "", ""]
fadeimages2[7]=["h.gif", "", ""]
fadeimages2[8]=["i.gif", "", ""]
fadeimages2[9]=["j.gif", "", ""]
fadeimages2[10]=["k.gif", "", ""]
fadeimages2[11]=["l.gif", "", ""]
fadeimages2[12]=["m.gif", "", ""]
fadeimages2[13]=["n.gif", "", ""]
fadeimages2[14]=["o.gif", "", ""]
fadeimages2[15]=["p.gif", "", ""]
fadeimages2[16]=["q.gif", "", ""]
Not doing this will result in the images having links, invalid ones at that.
Bookmarks