$(function() {
	// don't init gallery if it consists of a single photo
	if($("div#image-holder img").length > 1) {
		// init gallery: Gallery.init(imageHolder, imageWrapperWidth, imageCountHolder, nextButton, prevButton)
		Gallery.init($("div#image-holder"), 960, null, $("a#next-image"), $("a#previous-image"));
	}
});