$(document).ready(function() {
	$("a[rel='big']").colorbox();
	$('.baner img:gt(0)').hide();
	pocet = $(".baner img").size();
	var i = 0;
	if (pocet > 1) {
		setInterval(function(){
			$('.baner img').eq(i).fadeOut(1500);
			if (i < pocet - 1) { i++; } else { i = 0; }
			$('.baner img').eq(i).fadeIn(1500);
		}, 5000)
	}
	
	$('td.foto').hover(function (){
		$(this)
			.find('span')
			.filter(':not(:animated)')
			.animate({opacity: 1}, 300);
	}, function () {
		$(this)
			.find('span')
			.animate({opacity: 0.7}, 300);
	});
});
