function changephoto() {
	setTimeout("changephoto()", 4000);
	document.getElementById('photo').src = image[inum];
	document.getElementById('photo').width = imagewidth[inum];
	document.getElementById('photo').height = imageheight[inum];
	inum = inum + 1;
	if( inum >= imax ) { inum = 0; }
}