// some useful functions
function stopBubble(e)
{
	if (e && e.stopPropagation)
		e.stopPropagation();
	else
		window.event.cancelBubble = true;
}

function stopDefault(e)
{
	if (e && e.preventDefault)
		e.preventDefault();
	else
		window.event.returnValue = false;

	return false;
}

// on DOM load
$(document).ready(function()
{
	// lightbox
	$('a[rel*=lightbox]').lightBox({
		imageLoading: './js/images/lightbox-ico-loading.gif',
		imageBtnClose: './js/images/lightbox-btn-close.gif',
		imageBtnPrev: './js/images/lightbox-btn-prev.gif',
		imageBtnNext: './js/images/lightbox-btn-next.gif',
		txtImage: 'Obrázek',
		txtOf: 'z'
	}); // Select all links with lightbox class
});
