var pictures = new Array
// List all the pictures in the slideshow here
(
"images/ss/1.gif" 
,"images/ss/2.gif"
,"images/ss/3.gif"
,"images/ss/4.gif"
,"images/ss/5.gif"
,"images/ss/6.gif"
,"images/ss/7.gif"
,"images/ss/8.gif"
,"images/ss/9.gif"
,"images/ss/10.gif"




);
var picture_num = 0;
var current_picture = new Image();
current_picture.src = pictures[picture_num];
function start_show() 
{
// Time is in seconds X 1000
setInterval("slideshow()", 5000);
}
function slideshow() 
{
picture_num++;
if (picture_num == pictures.length) 
{
picture_num = 0;
}
current_picture.src = pictures[picture_num];
document["slide_show"].src = current_picture.src;
}

	window.onload=function(){
		start_show();
}
