jQuery(function(){
  
  //
  jQuery('#page a.lightbox').each(function(){
    jQuery(this).lightBox({
    	overlayBgColor: '#FFF',
    	overlayOpacity: 0.95,
    	imageLoading: 'images/lightbox-loading.gif',
    	imageBtnClose: 'images/lightbox-close.png',
    	containerResizeSpeed: 250,
    	txtImage: 'Bild',
    	txtOf: 'von'
    });
  });
  
  //
  jQuery('#page a').each(function(){
    var link = jQuery(this);
    var href = link.attr('href');
    if( href && href.length>1 && href.indexOf('#')===0 ){
      link.click(function(){
        document.location.hash = href.substr(1);
        return false;
      });
    }
  });
  
});
