<!--
var splashx = 0;

function slideshowgo(pretext, picarray, textarray, linkarray){
//alert (splashx);
var pic = picarray[splashx];
var text = textarray[splashx];
var link = linkarray[splashx];

document.getElementById(pretext.concat("pic")).src = pic;
document.getElementById(pretext.concat("text")).innerHTML = text;
document.getElementById(pretext.concat("link")).href = link;
splashx = (splashx+1)%numsplash;
}

function slideshow(picprefix){
window.setTimeout("slideshowgo('splashpost', splashpostsrc, splashposttitle, splashpostlink)", 3000);
}
-->
