jQuery().ready(function(){
  enableLightbox();
});
 
function enableLightbox() {
	$("a[href^='javascript:openPopup']").each(function() {
 	this.href = this.href.replace("javascript:openPopup('", "").replace("');", "");
	$(this).lightBox({
		overlayBgColor: '#000',
		overlayOpacity: 0.75,
		imageLoading: '/physiotherapie/wLayout/lightbox/images/loading.gif',
		imageBtnClose: '/physiotherapie/wLayout/lightbox/images/close.gif',
		imageBtnPrev: '/physiotherapie/wLayout/lightbox/images/prevlabel.gif',
		imageBtnNext: '/physiotherapie/wLayout/lightbox/images/nextlabel.gif',
		containerResizeSpeed: 250,
		txtImage: 'Illustration',
		txtOf: 'von'
	});
	});
}
