$(document).ready(function() {

	$('#TopMenu ul li').hover(function() {
		$(this).addClass('Hover');
	}, function() {
		$(this).removeClass('Hover');
	});

	$('table.Tabulka tr::nth-child(2n)').addClass('Lichy');
	$('a.Lightbox').lightBox({
		overlayBgColor: '#000',
		overlayOpacity: 0.5,
		containerResizeSpeed: 350,
		txtImage: 'Fotografie',
		txtOf: 'z',
		imageLoading: './images/loading.gif',
		imageBtnClose: './images/closelabel.gif',
		imageBtnPrev: './images/prevlabel.gif',
		imageBtnNext: './images/nextlabel.gif'
	});
});

