// JavaScript Document
function startGallery() {
				var myGallery = new gallery($('myGallery'), {
					timed: true,
					showArrows: false,
					showCarousel: false,
					showInfopane: false,
					delay: 3000,
					embedLinks: true
				});
				document.gallery = myGallery;
			}
			window.onDomReady(startGallery);