
function startGallery() {
if (window.gallery) {
	try {
		var myGallery = new gallery($('myGallery'), {
			timed:true,delay: 10000,
			showArrows: false,
			showCarousel: false,
			textShowCarousel: "Vorschau-Bilder",
			embedLinks:false,
			thumbOpacity: 0.7,slideInfoZoneOpacity: 0.7,useExternalCarousel:true,carouselElement:$("ext-thumbnails"),
			lightbox:true
		});
		var mylightbox = new Lightbox();
	} catch(error) {
		window.setTimeout("startGallery();",3000);
	}
	} else {
		window.gallery=true;
		if (this.ie) {
			window.setTimeout("startGallery();",3000);
		} else {
			window.setTimeout("startGallery();",800);
		}
	}
}
window.onDomReady(startGallery);
