function ulubione(obj) {
	title = 'Parafia';
	url = window.location.href;
	
	if (window.sidebar) {
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) {
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) {
		obj.rel = 'sidebar';
	return true;
	}
return false;
}

function dozakladek(){
nazwa = document.title; 
url = window.location.href;
if (window.sidebar)
window.sidebar.addPanel(nazwa, url, "");
else if(window.opera && window.print){ 
var elem = document.createElement('a');
elem.setAttribute('href',url);
elem.setAttribute('title',nazwa);
elem.setAttribute('rel','sidebar');
elem.click();
} 
else if(document.all)
window.external.AddFavorite(url, nazwa);
}
		
			$(document).ready(function(){
			$('#menu ul li.link ul').css('display','none');
			$('#menu ul li.link').hover(
				function(){
					var self = this;
					showtime=setTimeout(function(){$(self).children().next().css('display','block')},500);
					},
				function(){
					clearTimeout(showtime);
					 var self = this;
					setTimeout(function(){$(self).children().next().css('display','none')},500);
					}				
				);			
			$('a img').hover(			
				function(){
					$(this).attr('class','filter2');
					},
				function(){
					$(this).attr('class','filter1');
				}				
			);
		
		});
