jQuery(function( $ ){
				$.localScroll.defaults.axis = 'xy';
	$.localScroll({
		target: '#srodek', // could be a selector or a jQuery object too.
		duration:2000,
		queue:true,
		hash:false,
		easing: 'easeOutExpo',
		onBefore:function( e, anchor, $target ){
			// The 'this' is the settings object, can be modified
		},
		onAfter:function( anchor, settings ){
			// The 'this' contains the scrolled element (#content)
			//$(this).animate({fontSize:'40px' }, 150 );
		}
	});
});
