$(document).ready(function(){

	var settings = {
		imageLoading: '/web-obrazy/lb_loading.gif',
		imageBtnClose: '/web-obrazy/lb_close.gif',
		imageBtnNext: '/web-obrazy/lb_next.gif',
		imageBtnPrev: '/web-obrazy/lb_prev.gif',
		txtImage: 'Obrázek',
		txtOf: 'z'
	}

	$('div.fotogal').each(function(){
		$('div.fotogal_img   > a', $(this)).lightBox(settings);
		$('div.fotogal_nazev > a', $(this)).lightBox(settings);
	});

	$('div.fotogalspec').each(function(){
		$('div.fotogalspec_img   > a, div.fotogalspec_wrapper > a', $(this)).lightBox(settings);
		$('div.fotogalspec_nazev > a, div.fotogalspec_wrapper > a', $(this)).lightBox(settings);
	});

});

