function randomImage() 

{

	t = new Date();

	var image;

	imageChoice = new Array("0885-064.jpg","0884-021.jpg","0884-058.jpg","0885-008.jpg","0884-059.jpg","0885-017.jpg","0885-092.jpg","0885-080.jpg","0884-042.jpg","0805-035.jpg","0884-058-2.jpg","0885-065-2.jpg");

	index = (t.getSeconds()+2)%imageChoice.length;

	if (index > imageChoice.length) index = 0;

	image = imageChoice[index];

	return image;

}


