$(function(){
	height = $('#scroll').height()-210;
	
	$('#up').hover(
		function(){
			$('#scroll').animate({marginTop:'-'+height+'px'},7500)
		},
		function(){
			$('#scroll').stop();
		}
	);
	$('#down').hover(
		function(){
			$('#scroll').animate({marginTop:'0px'},7500)
		},
		function(){
			$('#scroll').stop();
		}
	);
});
