//252c11fe15cc0c367cc46c4ee083a475
// remove the registerOverlay call to disable the controlbar
hs.registerOverlay(
  {
  thumbnailId: null,
  overlayId: 'controlbar',
  position: 'top right',
  hideOnMouseOut: true
  }
);

hs.graphicsDir														= JS_rb+'global/js/highslide/';
hs.outlineType														= 'rounded-white';
hs.captionEval														= 'this.thumb.title';
hs.showCredits														= false;


// galerie
i_nb																= 0;
function nb(nr)
  {
  if(i_nb+nr < arr_galerie_bilder.length && i_nb+nr >= 0)
    {
	document.getElementById('galerie_'+i_nb).style.display			= 'none';
	document.getElementById('galerie_'+(i_nb+nr)).style.display		= 'block';
	
	if(document.images['galerie_'+(i_nb+nr)+'_img'].src.indexOf('trans.gif') > 0)
	  {
	  document.images['galerie_'+(i_nb+nr)+'_img'].src				= arr_galerie_bilder[(i_nb+nr)];
	  }
	i_nb															+= nr;
	}
  }
