    	var myShow;
    	var slideNr = 1;
    	var dataContent = {
				'05.gif': { 'caption': 'Steilküste auf Sylt' },
				'01.gif': { 'caption': 'Abdämmung Stör' },
    			'02.gif': { 'caption': 'Buhne' },
    			'03.gif': { 'caption': 'Deckwerk' },
    			'04.gif': { 'caption': 'Helgoland' },
    			'06.gif': { 'caption': 'Ufervegetation' }
   	            };
        window.addEvent('load', function(){
            
            myShow = new Slideshow('my_show', dataContent, { random:true, captions: true, controller: true, delay: 6000, duration: 2000, hu: 'http://www.portalnsk.de/bin/images/slideshow/nsk/' });
         })
         
         function interruptSlideshow (imgSrc) {
        	slideNr = myShow.getSlide()-1;
			document.getElementById('page_thumb_div').style.display = 'block'; 
			document.getElementById('page_thumb_img').src = imgSrc; 
			document.getElementById('my_show').style.display = 'none'; 
         }
        
        function continueSlideshow () {
        	document.getElementById('page_thumb_div').style.display = 'none'; 
        	document.getElementById('page_thumb_img').src = ''; 
        	document.getElementById('my_show').style.display = 'block'; 
        }
		
		function Go(url) {
			if (url!='nothing') {
				document.location.href=url;
			}
        }
