// JavaScript Document
$(document).ready(  function(){ 



/// GALERIE-LISTEN
$('#tx-lzgallery-pi1-fotos td').hover(function() {
        $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
});	

});
	$(function() {
		$("#tx-lzgallery-pi1-fotos td a").lightBox({
		fixedNavigation: false,
		overlayBgColor: '#000',
		overlayOpacity: 0.7,
		imageLoading: '/fileadmin/template/images/loadingAnimation.gif',
		imageBtnClose: '/fileadmin/template/images/lightbox-btn-close.gif',
		imageBtnPrev: '/fileadmin/template/images/lightbox-btn-prev.gif',
		imageBtnNext: '/fileadmin/template/images/lightbox-btn-next.gif',
		containerResizeSpeed: 350,
		txtImage: 'Bild',
		txtOf: 'von'
		});
	});

