$(document).ready(function()
{
	var resizeTimer = null;

	resizeWindow();
	
	$(window).bind('resize', function() {
    	if (resizeTimer) clearTimeout(resizeTimer);
	    resizeTimer = setTimeout(resizeWindow, 100);
	});
	
	$("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',
		fixedNavigation: true
	});
	
	$(document).bind("contextmenu", function(e) {
		e.preventDefault();
	});
});
