$(document).ready(function() {
				$('#scroll').jScrollPane();
				
				$(function () {
					$('h1#logo a').hover(function() {
						$(this).fadeTo("normal", 0.6);
					}, function() {
						$(this).fadeTo("normal", 1);
					});
					$('.footer_logo').hover(function() {
						$(this).fadeTo("normal", 0.4);
					}, function() {
						$(this).fadeTo("normal", 1);
					});
					$('.pohoda').hover(function() {
						$(this).fadeTo("normal", 0.4);
					}, function() {
						$(this).fadeTo("normal", 1);
					});
				});
				$("#browsable").scrollable({
					size: '1',
					items: '.items',
					loop: 'true',
					navi: '.navi',
					naviItem: 'a',
					keyboard: false
				}).navigator().autoscroll({ 
					autoplay: true, 
					interval: 10000 
				});
			});