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:			'/de/img/lightbox/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			'/de/img/lightbox/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			'/de/img/lightbox/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			'/de/img/lightbox/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				'/de/img/lightbox/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)
		containerResizeSpeed: 250,
		txtImage: 'Illustration',
		txtOf: 'von'
	});
	});
}
