Well, your second array is not defined (all of its 'entries' are for the fadimages array). I am at a loss as to what you are trying to do however. My best guess is that you just want one slide show, the one that is showing. If that is the case, remove this:
Code:
new fadeshow(fadeimages2, 100, 75, 1, 4000, 0)
from slideshow2.js
That's all you need to do but you can also get rid of this:
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
fadeimages[0]=["dooraccess.gif", "door_access.shtml", "_new", "Door Access"] //plain image syntax
fadeimages[1]=["dooraccess2.gif", "door_access.shtml", "_new", "Door Access"] //image with link syntax
fadeimages[2]=["house.gif", "intruder_alarms.shtml", "_new", "Intruder Alarms"] //image with link and target syntax
fadeimages[3]=["alarm.gif", "intruder_alarms.shtml", "_new", "Intruder Alarms"] //image with link and target syntax
fadeimages[4]=["keypad.gif", "intruder_alarms.shtml", "_new", "Intruder Alarms"] //image with link and target syntax
from slideshow.js
Bookmarks