That can be done but unless all the images in all of the shows are cached/preloaded first, the timing will not be exact for most folks visiting for the first time.
That said, what you can do is set the initial pause that you want in the normal spot and use an onslide, not oninit function to change it to what you want it to be once the 2nd image (index 1) has slid in:
Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [250, 180], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["http://i26.tinypic.com/11l7ls0.jpg", "", "", "Nothing beats relaxing next to the pool when the weather is hot."],
["http://i29.tinypic.com/xp3hns.jpg", "http://en.wikipedia.org/wiki/Cave", "_new", "Some day I'd like to explore these caves!"],
["http://i30.tinypic.com/531q3n.jpg"],
["http://i31.tinypic.com/119w28m.jpg", "", "", "What a beautiful scene with everything changing colors."] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:5000, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: "",
onslide: function(fglayer, index){
if(index == 1){
this.setting.displaymode.pause = 20000;
this.setting.onslide = function(){};
}
}
})
Don't miss the added comma (red) after the togglerid value.
Bookmarks