
 	$(document).ready(function(){
		$(".pozor").fadeOut(400).fadeIn(400);
		$('a[href=#top]').click(function(){
			$('html, body').animate({scrollTop:0}, 'slow');
			return false;});
		$('ul.menu li a').hover(function() { 
		  $(this).animate({ paddingLeft: '4px' }, 100);},
		  function() { 
		  $(this).animate({ paddingLeft: '0px' }, 200);});
	});
