var curimg=0
function rotateimages(){
	document.getElementById("slideshow").setAttribute("src", "/images/slideshow/"+galleryarray[curimg])
	curimg=(curimg<galleryarray.length-1)? curimg+1 : 0
}
