var $baseScrollBy = 60;

function doScrollTo(height, length){
	scrollby = (height < 0) ? '-=' + Math.abs(height) : (height > 0) ? '+=' + height : 0;
	$(".gallery div.list-holder").scrollTo(scrollby, length, {axis: "y"});
}

$(document).ready(function(){
	doScrollTo(0, 100);
	
	$(".gallery a.btn-down").click(function(e){
		e.preventDefault();
		doScrollTo($baseScrollBy, 500);
	});
	
	$(".gallery a.btn-up").click(function(e){
		e.preventDefault();
		doScrollTo((0-$baseScrollBy), 500);
	});
});
