Thanks Gary, but as I mentioned Acorn has done the thinking. I just struggled with this damn IFRAME not wanting to be clipped.
Maybe I should have mentioned that the slideshow allows to define the display time per slide. In the site head code
Code:
<script>
sDispTimes=new Array(10,8,9,11);
function sswitch(){
var n=xr_curp+1;
if (n==xr_spapn)n=0;
xr_spapp(n);
setTimeout(sswitch,sDispTimes[n%sDispTimes.length]*1000);
}
setTimeout(sswitch,sDispTimes[0]*1000);
</script>
in the line
sDispTimes=new Array(10,8,9,11);
the time a slide is displayed is defined in seconds (including the transition time). If you want all slides be displayed for the same time you only need to put one number there...
The mechanism is that if you have more slides than the number of numbers specified there then it begins to read from start again (slide 1, 5, 9 displayed for 10 seconds, slide 2,6,10 displayed for 8 seconds...).