
var myShow;
    	var slideNr = 1;
    	var dataContent = {
    			'titelbild_kuestendaten.jpg': { 'caption': 'Nordseeküste Tideelbe Nord-Ostsee-Kanal Ostseeküste' },				
    			'kuestendaten_landsat.jpg': { 'caption': 'Deutsche Küste' },
				'nsk_landsat.jpg': { 'caption': 'Deutsche Nordseeküste' },
				'tideelbe_landsat.jpg': { 'caption': 'Tideelbe' },
                'nok_landsat.jpg': { 'caption': 'Nord-Ostsee-Kanal' },				
    			'osk_landsat.jpg': { 'caption': 'Ostseeküste' }
    	            };
        window.addEvent('load', function(){
            
            myShow = new Slideshow('my_show', dataContent, { random:true, captions: true, controller: true, delay: 6000, duration: 2000, hu: 'http://www.kuestendaten.de/bin/images/slideshow/kuestendaten/' });
         })
         
         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;
			}
        }
