    $(document).ready(function() {
        $('#slider').s3Slider({
            timeOut: 6000
        });
		$('.blok a, .leftmenu a').hover(function() {
		$(this).stop().animate({ marginLeft: '5px' }, 200);
	}, function() {
		$(this).stop().animate({ marginLeft: 0 }, 200);
	});
    });
