function startGallery() {
	$('myGallery').style.display = 'block';
	$('myGallerynoJS').style.display = 'none';

	var myGallery = new gallery($('myGallery'), {
		timed: true,
		delay: 7000,
		showArrows: true,
		showCarousel: false,
		showInfopane: false,
		embedLinks: true,
		lightbox: true,
		fadeDuration:2000
	});

}
window.addEvent('domready', startGallery);