var c = 0;
var s;
function photoGallery() {
	document.getElementById('photo-gallery').src = "photos/"+(c%11 + 1)+".jpg";
	c = c + 1;
	if (c == 17) c = 0;
	s = setTimeout("photoGallery()",10000);
}