$(function(){
	height = $('#scroll').height()-210;
	
	$('#slide_up').hover(
		function(){
			$('#scroll').animate({marginTop:'-'+height+'px'},5000)
		},
		function(){
			$('#scroll').stop();
		}
	);
	$('#slide_down').hover(
		function(){
			$('#scroll').animate({marginTop:'0px'},4000)
		},
		function(){
			$('#scroll').stop();
		}
	);
});