if( typeof(CConfig) != 'object' ) {
	alert('BŁĄD KRYTYCZNY!\r\nBrak pliku konfiguracyjnego dla JavaScript. Część elementów może nie działać. (galeria.js)');
}

if( typeof(jQuery) == 'function' ) {
	$(function() {
		// Use this example, or...
		//$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
		// This, or...
		//$('#gallery a').lightBox(); // Select all links in object with gallery ID
		// This, or...
		//$('a.lightbox').lightBox(); // Select all links with lightbox class
		// This, or...
		//$('a').lightBox(); // Select all links in the page
		// ... The possibility are many. Use your creative or choose one in the examples above
		
		$('#gallery a.lightbox').lightBox({
			overlayBgColor: '#FFF',
			overlayOpacity: 0.6,
			imageLoading: CConfig.lightboxImgPath + 'lightbox-ico-loading.gif',
			imageBtnClose: CConfig.lightboxImgPath + 'lightbox-btn-close.gif',
			imageBtnPrev: CConfig.lightboxImgPath + 'lightbox-btn-prev.gif',
			imageBtnNext: CConfig.lightboxImgPath + 'lightbox-btn-next.gif',
			txtImage: 'Obrazek',
			txtOf: 'z'});
		});
} else {
	alert('BŁĄD KRYTYCZNY!\r\nBrak biblioteki jQuery. Część elementów może nie działać. (galeria.js)');
}