$(document).ready(function() {
	jQuery(function( $ ){
		var $links = $('#scroll_menu a');
		$('#scroll_menu').localScroll({
			axis:'y',
			queue:true,
			speed:null,
			onBefore:function( e, el, $target ){
				$target.queue('fx',[]).stop();//to avoid queueing animations
				$links.removeClass('scrolling');						
				$(this).addClass('scrolling').get(0).blur();
			},
			onAfter:function(){
				$links.removeClass('scrolling');
			},
			persistent:true
		});
	});
	jQuery(function( $ ){
		var $links = $('a.scroll_top');
		$('#left_col').localScroll({
			axis:'y',
			queue:true,
			speed:null,
			onBefore:function( e, el, $target ){
				$target.queue('fx',[]).stop();//to avoid queueing animations
				$links.removeClass('scrolling');						
				$(this).addClass('scrolling').get(0).blur();
			},
			onAfter:function(){
				$links.removeClass('scrolling');
			},
			persistent:true
		});
	});	
});
