// jQuery
$(document).ready(function(){
	// jquery.lightbox
	$("a.lb_img").lightBox({
			imageLoading:			'/js/jquery-lightbox/images/loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			'/js/jquery-lightbox/images/previous.png',			// (string) Path and the name of the prev button image
			imageBtnNext:			'/js/jquery-lightbox/images/next.png',			// (string) Path and the name of the next button image
			imageBtnClose:		'/js/jquery-lightbox/images/delete.png',			// (string) Path and the name of the close btn
			imageBlank:				'/js/jquery-lightbox/images/lightbox-blank.gif',	// (string) Path and the name of a blank image (one pixel)
			overlayBgColor: "#000",
			overlayOpacity: 0.6,
			txtImage: 'Bild',
			txtOf: 'von'
	});
});
