// JavaScript Document
var flg = 1;

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

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