$(document).ready(function()
{		
  	$(".animate").animate({ opacity: 0}, 0).css("display", "block");

	$(".animate").hover(
		function()
		{
			$(this).stop().animate({ opacity: 1}, 300 );
		},	function()
		{
			$(this).stop().animate({ opacity: 0}, 200 );
		}
	);

	$("a.gallery").lightBox({
		txtImage: 'Obraz',
		txtOf: 'z',
		imageBlank: '../img/lightbox-blank.gif',
		imageLoading: '../img/lightbox-ico-loading.gif',
		imageBtnClose: '../img/lightbox-btn-close.gif',
		imageBtnPrev: '../img/lightbox-btn-prev.gif',
		imageBtnNext: '../img/lightbox-btn-next.gif'
	});
	
	$("a.newwindow").click(function()
	{
		window.open(this.href, '_blank'); 
		return false;
	});
})
