function startUp() {
	startGallery();
}

function startGallery() {
	if ($('slideshow_main') != false) {
		var myGallery = new gallery($('slideshow_main'), {
			timed: true,
			showArrows: false,
			showCarousel: false,
			imageSelector: 'img',
			slideInfoZoneOpacity: 0.9,
			textShowCarousel: 'Pumpkinville'
		});
	}
}

window.onDomReady(startUp);