// JavaScript Document
var flg = 0;

function dispInfo() {
	if(flg == 0) {
		$('#news').animate({top:'-327px'},500,'easeInOutQuad');
		flg = 1;
	} else {
		$('#news').animate({top:'-130px'},500,'easeInOutQuad');
		flg = 0;
	}
}

function laadEasing() {
	$('#news').animate({top:'-130px'},500,'easeInOutQuad');
}

