var myGallery;
function startGallery() {
	myGallery = new gallery($('myGallery'), {
	timed: true,
	delay: 4000,
	showArrows: false,
	showCarousel: false,
	showInfopane: false,
	embedLinks: false
	});
}
window.onDomReady(startGallery);
window.addEvent('domready', function(event){
		$$('.gallery-thumb').each( function(item, index){
			item.addEvent('click', function(evt){
			myGallery.goTo(index);
		});
		item.removeProperty('href');
	});
});

