	$(document).ready(function() {
			$("a.mik_img").fancybox({
				'titleShow'	     : true,
				'titlePosition'  : 'over',
				'overlayOpacity' : 0.8,
				'overlayColor'   : '#3f5320'
			});
			
			//menu gorne glowne
			$(function() {
				$('#menu_top a').css({backgroundPosition: '0px 0px'});
				$("#menu_top a").hover(function(){
					$(this).animate({backgroundPosition: '(0px -45px)'}, 500);
				}, function() {
					$(this).animate({backgroundPosition: '(0px 0px)'}, 500);
				});
			});
			
			//menu prawe
			$(function() {
				$('#menu_prawe a').css({backgroundPosition: '0px 0px'});
				$("#menu_prawe a").hover(function(){
					$(this).animate({backgroundPosition: '(0px -236px)'}, 1000);
				}, function() {
					$(this).animate({backgroundPosition: '(0px 0px)'}, 200);
				});
			});
			
			//tooltip
			$('a').tooltip({
				track: true,
				delay: 0,
				showURL: false,
				showBody: " - ",
				fade: 50
			});
			if ($('dfn').length) {
				$('dfn').tooltip({
					track: true,
					delay: 0,
					showURL: false,
					showBody: " - ",
					fade: 50
				});
			}
			if ($('#banery').length) {
				$('#banery').loopedSlider({  
					autoStart: 8000 
				});
			}
		
	});
	
	
