function showDesc(text){
 document.getElementById('zahradaDescText').innerHTML = text;
}

function showDescGal(text){
 if (text!='') document.getElementById('zahradaDescText').innerHTML = text;
 else          document.getElementById('zahradaDescText').innerHTML = 'Vybete si video';
}

function showDescPGal(text,target){
 eval('document.getElementById(\'galText'+target+'\').innerHTML = \''+text+'\'');
}


function thisOver(elem,text,zahrada){
 var non;
 elem.style.backgroundColor = '#C1DF96';
 showDesc(text);
 if (elem.id != zahrada && zahrada != '') document.getElementById(zahrada).style.backgroundColor = 'transparent';
}

function thisOut(elem,text,zahrada){
 elem.style.backgroundColor = 'transparent';
 showDesc(text);
 if ( zahrada!='' ) document.getElementById(zahrada).style.backgroundColor = '#C1DF96';
}

hs.graphicsDir = 'highslide/graphics/';
hs.align = 'center';
hs.transitions = ['fade']; // ["expand", "crossfade"]; //
hs.outlineType = 'rounded-white';
hs.fadeInOut = false;
hs.dimmingOpacity = 0.15;
hs.transitionDuration = 100;
hs.outlineWhileAnimating = true;


// Add the controlbar
hs.addSlideshow({
	slideshowGroup: 'slideshowgroup',
	interval: 5000,
	repeat: false,
	useControls: true,
	fixedControls: 'fit',
	overlayOptions: {
		opacity: 0.75,
		position: 'bottom center',
		hideOnMouseOut: true
	}
});

var galleryOptions = {
	slideshowGroup: 'slideshowgroup',
      fadeInOut: false,
      //transitions:  ['expand', 'crossfade'],
      transitions:  ['fade'],
};


   hs.onDimmerClick = function() {
      return false;
   }

