I'd try adding (in red):
Code:
var seqslides=new Array()
//Set Path to Image plus optional URL ("" for no URL):
seqslides[0]=["image1.gif", "http://www.dynamicdrive.com"]
seqslides[1]=["image2.gif", "http://www.javascriptkit.com"]
seqslides[2]=["image3.gif", "http://www.google.com"]
seqslides[3]=["image4.gif", "http://www.yahoo.com"]
seqslides[4]=["image5.gif", "http://www.google.com"]
seqslides.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
Just after the array definition as shown, and perhaps at other key spots in the code. This will mix up the order. You could also throw in some blank images to the array.
Bookmarks