	$(document).ready(function(){
		$("div#MerTekst").click(function()
		{
		  	$("div#MerTekst").toggle();
		});
		$("div#MoreInfo").click(function()
		{
						
			var Toppen = $("div#MoreInfo").offset().top;
			var Leften = $("div#MoreInfo").offset().left;
			$("div#MerTekst").css({ position: "absolute", top: Toppen+20,left: Leften-2, cursor:"pointer"});
			$("div#MerTekst").toggle();
		});
		$('ul.gallery').galleria(
		{
			history   : false, // deactivates the history object for bookmarking, back-button etc.
			clickNext : false, // helper for making the image clickable. Let's not have that in this example.
			insert    : '#main_image', // the containing selector for our main image
			onImage   : function() { $('.nav').css('display','block'); } // shows the nav when the image is showing

		}); 

	});
