var myGallery = null;

function startGallery() {
	myGallery = new gallery($('myGallery'), {
		timed: false,
		showArrows: true,
		showCarousel: false,
		embedLinks: false
	});
}

jQuery(document).ready(function(){
	jQuery("#myGallery").hide();

	jQuery("#but_mehr").click(function(){
		jQuery("#myGallery").show();
		if (myGallery == null) {
	  		startGallery();
	  	}
	});

	jQuery("#but_close").click(function(){
		jQuery("#myGallery").hide();
	});
 });

