var c = 0;
var s = 100;

$(function(){
$('.newsBox .inner ul li a').click(function(){
var hoge = $(this).attr('href');
$('#information').load(hoge);
return false;
});

var h = $('.newsBox .inner').height();
$('#down').click(function(){
c = ((c - s) < (h - 420) * -1) ? (h - 420) * -1 : c - s;
$('.newsBox .inner').animate({top:c}, 500 );
return false;					   
});

$('#up').click(function(){
c = ((c + s) > 0) ? 0 : c + s;
$('.newsBox .inner').animate({top:c}, 500 );
return false;
});
});