//function for altering the images

	// List all the pictures in the slideshow here
	var pictures = new Array
	(
	"images/img.jpg", 
	"images/imgRot2.JPG", 
	"images/imgRot3.JPG",
	"images/img.jpg", 
	"images/img.jpg" 
	);

	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()", 10000);
	}

	function slideshow() 
	{
		picture_num++;
		if (picture_num == pictures.length) 
		{
		picture_num = 0;
	}
	current_picture.src = pictures[picture_num];
	document["rotating_picture"].src = current_picture.src;
	}
