jQuery(function( $ ){

var target = $('#scroller');								
								
$.localScroll({
		target: target, //could be a selector or a jQuery object too.
		axis:'xy',//the default is 'y'
		queue:true,
		duration:1500
	});

});