/* e7040fdd78f8abd9abdd7976ce769f28 */

	hs.graphicsDir = '/lib/highslide/graphics/';
	hs.align = 'center';
	hs.transitions = ['expand', 'crossfade'];
	wrapperClassName: 'borderless';
	hs.fadeInOut = true;
	hs.dimmingOpacity = 0.75;


  hs.lang = {
   loadingText :     'Lade...',
   loadingTitle :    'Klick zum Abbrechen',
   focusTitle :      'Klick um nach vorn zu bringen',
   fullExpandTitle : 'Vergrößern',
   fullExpandText :  'Vollbild',
   creditsText :     'Powered by <i>Highslide JS</i>',
   creditsTitle :    'Gehe zur Highslide JS Homepage',
   previousText :    'Zurück',
   previousTitle :   'Zurück (Pfeiltaste links)',
   nextText :        'Vor',
   nextTitle :       'Vor (Pfeiltaste rechts)',
   moveTitle :       'Verschieben',
   moveText :        'Verschieben',
   closeText :       'Schließen',
   closeTitle :      'Schließen (Esc)',
   resizeTitle :     'Vollbild schließen',
   playText :        'Abspielen',
   playTitle :       'Diashow abspielen (Leertaste)',
   pauseText :       'Pause',
   pauseTitle :      'Pausiere Diashow (Leertaste)',
   number :          'Bild %1/%2',
   restoreTitle :    'Klick um das Bild zu schließen, klick und ziehe um zu verschieben. Benutze Pfeiltasten für vor und zurück.'
 };
  
	// Add the controlbar
	if (hs.addSlideshow) hs.addSlideshow({
    slideshowGroup: '3', 
		interval: 5000,
		repeat: false,
		useControls: true,
		fixedControls: 'fit',
		overlayOptions: {
			opacity: .75,
			position: 'bottom center',
			hideOnMouseOut: true
		}
	});


  function showChart(objectId) {
  
    
    
    if (document.getElementById(objectId).style.display == 'block') {
    
     document.getElementById('control'+objectId).innerHTML = '&gt;&gt;';
     document.getElementById(objectId).style.display = 'none';
    
    } else {
    
     document.getElementById('control'+objectId).innerHTML  = '&lt;&lt;';
     document.getElementById(objectId).style.display = 'block';
    
    }
    
  }
  
  
  function pageScroll() {
  
      	//window.scrollBy(0,-100);
    
  }
  
  

  /*
  if (document.URL.match('(.*)\#(.*)')) {
    window.onload = pageScroll;
  }
  
  
  var hash = window.location.hash;
  
  setInterval(function() {
      if (hash != window.location.hash) {
          pageScroll();
          hash = window.location.hash;
      }
  }, 1000);
  */
