//randomly selects an image from 16 sequentially
//numbered .gif's every time the page reloads
function splashpic (){
var length = 5;
var ran_num = Math.round((length-1)*Math.random());
ran_num=ran_num+1;
var source = "image/"+ran_num+".jpg";
document.images['splash'].src = source;
}
