var baseHref = document.getElementsByTagName('base')[0].href;

function router(path) 
{
	return baseHref + path + '.html';
}

function messageDisplay(message)
{
	$.unblockUI();	

	$.blockUI({
		css: { border: 'none', padding: '30px', backgroundColor: '#000', '-webkit-border-radius': '10px', '-moz-border-radius': '10px', opacity: .9, 'font-weight': 'bold', color: '#fff' },
		message: '<h1>'+message+'</h1>' 
		});
	
	$('.blockOverlay').attr('title','Kliknij by odblokować').click($.unblockUI)
}


$(document).ready(function()
{
		$("a[rel^='prettyphoto']").prettyPhoto({
			overlay_gallery: true,
			theme: 'dark_rounded',
			allow_resize: false
		});
});

